-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathCargo.toml
25 lines (23 loc) · 1.3 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
[package]
name = "unit3d-announce"
version = "0.1.0"
edition = "2021"
[dependencies]
anyhow = { version = "1.0.0", default-features = true, features = ["std"] }
axum = { version = "0.8.0", default-features = false, features = ["http1", "tokio", "query", "macros", "json"] }
chrono = { version = "0.4.22", default-features = false, features = ["serde"] }
dotenvy = { version = "0.15.0", default-features = false }
indexmap = { version = "2.0.0", default-features = false, features = ["std", "serde"] }
memchr = { version = "2.6.0", default-features = false, features = ["std"] }
parking_lot = "0.12.1"
rand = { version = "0.8.5", default-features = false, features = ["alloc", "small_rng"] }
serde = { version = "1.0", default-features = false, features = ["derive"] }
serde_bytes = "0.11.14"
serde_repr = { version = "0.1", default-features = false }
sqlx = { version = "0.8.0", default-features = false, features = ["runtime-tokio-rustls", "macros", "mysql", "chrono", "ipnetwork"] }
thiserror = { version = "2.0.0", default-features = false }
tokio = { version = "1", default-features = false, features = ["rt-multi-thread", "macros", "signal", "sync"] }
tracing = "0.1.41"
tracing-subscriber = { version = "0.3.19", features = ["env-filter"] }
[target.'cfg(not(target_env = "msvc"))'.dependencies]
tikv-jemallocator = "0.5"