-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
44 lines (39 loc) · 1.29 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
[package]
name = "discord_status_bot"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.75"
chrono = "0.4.30"
console-subscriber = "0.1.10"
dotenvy = "0.15.7"
futures = "0.3.28"
futures-util = "0.3.28"
http = "0.2.9"
pbjson = "0.6.0"
pbjson-types = "0.6.0"
prost = "0.12.1"
rand = "0.8.5"
regex = "1.10.0"
reqwest = { version = "0.11.20", features = ["json"] }
riven = "2.24.0"
serde = { version = "1.0.188", features = ["serde_derive"] }
serde_derive = "1.0.188"
serde_json = { version = "1.0.106", features = ["arbitrary_precision"] }
serenity = { version = "0.*", features = ["rustls_backend", "cache", "client", "gateway", "builder", "chrono", "model", "http", "utils"], default-features = false }
sqlx = {version = "0.8.5", features = [ "runtime-tokio-rustls", "sqlite", "json" ] }
tokio = { version = "1.32.0", features = ["full", "tracing"] }
tracing = "0.1.37"
tracing-appender = "0.2.2"
tracing-subscriber = "0.3.17"
urlencoding = "2.1.3"
[target.'cfg(not(target_env = "msvc"))'.dependencies]
openssl = { version = "0.10.57", features = ["vendored"] }
jemallocator = "0.5.4"
[dev-dependencies]
tokio-test = "0.4.3"
[build-dependencies]
anyhow = "1.0.75"
pbjson-build = "0.6.2"
prost-build = "0.12.1"