-
Notifications
You must be signed in to change notification settings - Fork 7
/
Cargo.toml
56 lines (48 loc) · 1.22 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
[package]
name = "scripty_v2"
version = "1.0.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[profile.release-full]
inherits = "release"
incremental = false
codegen-units = 1
lto = "fat"
[profile.release]
debug = true
[workspace]
members = [
"scripty_config",
"scripty_webserver",
"scripty_core",
"scripty_premium",
"scripty_stt",
"scripty_audio_handler",
"scripty_commands",
"scripty_i18n",
"scripty_db",
"scripty_metrics",
"scripty_utils",
"scripty_data_storage",
"scripty_redis",
"scripty_bot",
"scripty_bot_utils",
"scripty_automod",
"scripty_botlists",
"scripty_error",
"scripty_tts",
"scripty_integrations",
"scripty_build_checks",
"scripty_data_type",
]
[dependencies]
scripty_core = { path = "scripty_core" }
scripty_build_checks = { path = "scripty_build_checks" }
[target.'cfg(target_arch = "x86_64")'.dependencies]
tikv-jemallocator = "0.5"
[patch.crates-io]
serenity = { git = "https://github.com/serenity-rs/serenity", branch = "next" }
songbird = { git = "https://github.com/serenity-rs/songbird", branch = "serenity-next-rxfix" }
[patch.crates-io.serenity-voice-model]
git = "https://github.com/serenity-rs/serenity"
branch = "current"