-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
84 lines (69 loc) · 1.7 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
[workspace]
members = ["commons", "database-api", "discord-api", "strumbot", "twitch-api"]
[workspace.package]
version = "1.2.11"
edition = "2021"
[workspace.dependencies]
anyhow = "1.0"
thiserror = "1.0"
twilight-http-ratelimiting = "0.15"
twilight-model = "0.15"
serde_json = "1.0"
bytes = "1"
lru = "0.11"
tracing = "0.1"
tracing-subscriber = "0.3"
async-trait = "0.1"
[workspace.dependencies.once_cell]
version = "1"
default-features = false
[workspace.dependencies.hashbrown]
version = "0.14"
features = ["serde"]
[workspace.dependencies.futures]
version = "0.3"
default-features = false
[workspace.dependencies.trust-dns-resolver]
version = "0.22"
default-features = false
features = ["tokio-runtime"]
[workspace.dependencies.twilight-util]
version = "0.15"
default-features = false
features = ["builder"]
[workspace.dependencies.twilight-http]
version = "0.15"
features = ["decompression", "rustls-webpki-roots", "trust-dns"]
[workspace.dependencies.twilight-gateway]
version = "0.15"
default-features = false
features = ["rustls-webpki-roots", "zlib-stock"]
[workspace.dependencies.serde]
version = "1.0"
features = ["rc"]
[workspace.dependencies.regex]
version = "1.6"
[workspace.dependencies.tokio]
version = "1.21"
features = ["macros", "rt-multi-thread", "fs", "sync"]
default-features = false
[workspace.dependencies.reqwest]
version = "0.11"
features = [
"json",
"rustls-tls",
"rustls-tls-webpki-roots",
"brotli",
"trust-dns",
]
default-features = false
[workspace.dependencies.eos]
features = ["alloc", "parsing", "serde", "macros"]
git = "https://github.com/Rapptz/eos"
[profile.release]
lto = true
strip = true
incremental = true
overflow-checks = false
opt-level = "z"
panic = "abort"