-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
34 lines (25 loc) · 880 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
[package]
name = "role-manager"
version = "0.1.0"
edition = "2021"
[profile.release]
debug = true
[dependencies]
tokio = { version = "1", features = [ "rt-multi-thread", "signal" ] }
chrono = "0.4"
speedate = "0.14"
itertools = "0.11"
serde = { version = "1", features = ["derive", "rc"] }
serde_json = { version = "1" }
json5 = "0.4"
toml = "0.8"
csv = "1.2"
sea-query = { version = "0.30" }
sea-orm = { version = "0.12", default-features = false, features = [ "sqlx-mysql", "runtime-tokio-rustls", "debug-print", "macros", "with-chrono" ] }
reqwest = { version = "0.12", features = ["json"] }
tower = { version = "0.4", features = ["full"] }
urlencoding = "2"
serenity = { version = "0.12", default-features = false, features = ["client", "gateway", "cache", "rustls_backend", "model", "unstable_discord_api"] }
poise = "0.6"
tracing = "0.1"
tracing-subscriber = "0.3"