-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
37 lines (30 loc) · 1.1 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
[package]
name = "gamma"
version = "0.1.0"
edition = "2021"
license = "GPL-3.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[workspace]
members = [".", "bancho-packet"]
[dependencies]
bancho-packet = { version = "0.2.0", path="bancho-packet"}
actix-web = "4"
redis = { version = "0.22.1", features = ["aio", "tokio-comp"] }
deadpool-redis = { version = "0.11.1", features = ["rt_tokio_1"] }
sqlx = { version = "0.6", features = ["runtime-tokio-native-tls", "mysql"] }
config = "0.13.3"
dotenv = "0.15.0"
serde = "1.0.152"
serde_json = "1.0.91"
lazy_static = "1.4.0"
uuid = { version = "1.1.2", features = ["v4", "fast-rng", "macro-diagnostics"] }
thiserror = "1.0.38"
tracing = "0.1.37"
tracing-actix-web = { version = "0.7.2", features = ["opentelemetry_0_18"] }
tracing-subscriber = { version = "0.3.16", features = ["env-filter"] }
tracing-tree = "0.2.2"
tracing-log = "0.1.3"
tracing-opentelemetry = "0.18.0"
opentelemetry = { version = "0.18.0", features = ["rt-tokio"] }
opentelemetry-otlp = { version = "0.11.0", features = ["tokio", "tls"] }
bcrypt = "0.13"