forked from MaxOhn/Bathbot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
58 lines (53 loc) · 2.44 KB
/
Copy pathCargo.toml
File metadata and controls
58 lines (53 loc) · 2.44 KB
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
57
58
[workspace]
members = [
"bathbot",
"bathbot-cache",
"bathbot-cards",
"bathbot-client",
"bathbot-macros",
"bathbot-model",
"bathbot-psql",
"bathbot-server",
"bathbot-util",
]
resolver = "2"
[workspace.package]
version = "3.22.1"
authors = ["MaxOhn <ohn.m@hotmail.de>"]
edition = "2024"
[workspace.dependencies]
bitflags = { version = "2.8.0" }
eyre = { version = "0.6" }
http = { version = "1.2.0" }
http-body-util = { version = "0.1.2" }
hyper = { version = "1.6.0", default-features = false }
hyper-rustls = { version = "0.27.5", default-features = false, features = ["http2", "tls12", "webpki-roots"] }
hyper-util = { version = "0.1.10", default-features = false, features = ["client", "client-legacy", "http2", "tokio"] }
memchr = { version = "2.7.4" }
metrics = { version = "0.24.1" }
metrics-exporter-prometheus = { version = "0.16.2", default-features = false }
metrics-util = { version = "0.19.0" }
rkyv = { version = "0.8" }
rosu-mods = { version = "0.3.0", features = ["rkyv"] }
rosu-pp = { git = "https://github.com/MaxOhn/rosu-pp", branch = "next" }
# rosu-pp = { path = "../rosu-pp" }
rosu-v2 = { git = "https://github.com/MaxOhn/rosu-v2", branch = "lazer", default-features = false, features = ["deny_unknown_fields", "macros", "metrics"] }
# rosu-v2 = { path = "../rosu-v2", default-features = false, features = ["deny_unknown_fields", "macros", "metrics"] }
rustls = { version = "0.23.20", default-features = false, features = ["std", "tls12"] }
skia-safe = { version = "0.81.0" }
thiserror = { version = "2.0.11" }
twilight-gateway = { version = "0.16", default-features = false, features = ["rustls-webpki-roots", "rustls-ring", "twilight-http", "zlib-stock"] }
twilight-http = { version = "0.16", default-features = false, features = ["rustls-webpki-roots", "rustls-ring"] }
twilight-interactions = { git = "https://github.com/MaxOhn/twilight-interactions", branch = "with-help-16", default-features = false, features = ["derive"] }
# twilight-interactions = { path = "../twilight-interactions/twilight-interactions", default-features = false, features = ["derive"] }
twilight-model = { version = "0.16", default-features = false }
twilight-standby = { version = "0.16", default-features = false }
[profile.dev.package.sqlx-macros]
opt-level = 3
[profile.release]
lto = "thin"
codegen-units = 1
strip = "debuginfo"
# https://nnethercote.github.io/perf-book/build-configuration.html#disable-debug-info-generation
[profile.dev]
debug = false