-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
44 lines (38 loc) · 1.25 KB
/
Cargo.toml
File metadata and controls
44 lines (38 loc) · 1.25 KB
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 = "wt_dm_api"
version = "0.1.0"
edition = "2021"
authors = ["FlareFlo"]
license = "Apache-2.0"
[dependencies]
http = "1.1.0"
serde = { version = "1.0.210", features = ["derive"] }
tokio = { version = "1.40.0", features = ["rt-multi-thread", "sync", "signal"] }
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
axum = { version = "0.7.7", features = ["json"] }
octocrab = "0.40.0"
wt_version = "0.1.2"
reqwest = { version = "0.12.8", features = ["rustls-tls"], default-features = false }
serde_json = "1.0.128"
tracing = "0.1.40"
base64 = "0.22.1"
color-eyre = "0.6.3"
wt_blk = { git = "https://github.com/Warthunder-Open-Source-Foundation/wt_blk.git", version = "0.2.3" }
dashmap = "6.1.0"
strum = { version = "0.26.3", features = ["derive"] }
utoipa = { version = "4.2.3", features = ["axum_extras"] }
utoipa-scalar = { version = "0.1", features = ["axum"] }
arc-swap = "1.7.1"
# Optionals
console-subscriber = { version = "0.4.0", optional = true }
rayon = "1.10.0"
futures = { version = "0.3.31", features = ["thread-pool"] }
moka = { version = "0.12.8", features = ["future"] }
time = "0.3.36"
[profile.dev]
#opt-level = 2
[features]
dev = ["dev-cache", "debug-err"]
debug-err = []
dev-cache = []
tokio-console = ["console-subscriber"]