-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
executable file
·38 lines (34 loc) · 929 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
35
36
37
38
[package]
name = "voyager-backend"
version = "0.0.1"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
axum = "^0.7"
tokio = { version = "^1.36", features = ["full"] }
serde = { version = "^1", features = ["derive"] }
serde_json = "^1.0"
serde_url_params = "^0.2"
futures = "^0.3"
mongodb = "^2.8"
dotenv = "^0.15"
reqwest = { version = "^0.12", features = ["blocking", "json"] }
lazy_static = "^1.4"
tracing = "^0.1"
tracing-subscriber = "^0.3" # features = ["env-filter"]
tracing-appender = "^0.2"
color-eyre = "^0.6"
chrono = "^0.4"
bollard = "^0.16"
serenity = "^0.12"
url = "^2.5"
paste = "^1.0"
regex = "^1.0"
uuid = { version = "^1.7", features = ["v4", "fast-rng", "macro-diagnostics"] }
git2 = "^0.18"
tar = "^0.4"
async-trait = "^0.1"
[target.'cfg(unix)'.dependencies]
jemallocator = "0.5"
[profile.dev.package.backtrace]
opt-level = 3