-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
48 lines (42 loc) · 1010 Bytes
/
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
[workspace]
members = ["crates/*"]
resolver = "2"
[workspace.dependencies]
futures-util = "0.3.31"
hashbrown = "0.15.2"
proptest = "1.6.0"
base64k = { version = "=0.1.0", path = "crates/base64k" }
jpeggr = { version = "=0.1.0", path = "crates/jpeggr" }
paracord = { version = "=0.1.0", path = "crates/paracord" }
qcore = { version = "=0.1.0", path = "crates/qcore" }
qmacros = { version = "=0.1.0", path = "crates/qmacros" }
shrec = { version = "=0.1.0", path = "crates/shrec" }
[workspace.dependencies.clap]
version = "4.5.29"
features = ["env", "cargo", "derive", "wrap_help"]
[workspace.dependencies.serenity]
version = "0.12.4"
default-features = false
features = [
"parking_lot",
"client",
"builder",
"cache",
"chrono",
"gateway",
"model",
"http",
"utils",
"rustls_backend",
"voice_model",
"voice",
]
[profile.opt-with-debug-info]
inherits = "release"
debug = 2
debug-assertions = false
incremental = true
[profile.docker]
inherits = "release"
lto = "thin"
strip = "symbols"