-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
23 lines (21 loc) · 895 Bytes
/
Cargo.toml
File metadata and controls
23 lines (21 loc) · 895 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
[package]
name = "up1-rust"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
axum = { version = "0.7.5", features = ["multipart", "http2"] }
camino = { version = "1.0.7", features = ["serde1"] }
clap = { version = "4.5.4", features = ["derive"] }
config-file = { version = "0.2.3", features = ["json"], default-features = false }
hex = "0.4.3"
hmac-sha256 = "1.1.2"
serde = { version = "1.0.137", features = ["serde_derive", "derive"] }
tempfile = "3.3.0"
tokio = { version = "1.18.1", features = ["rt", "rt-multi-thread", "tokio-macros", "macros", "sync", "parking_lot", "fs"] }
tower-http = { version = "0.5.2", features = ["fs", "trace"] }
tracing = "0.1.34"
tracing-subscriber = { version = "0.3.11", features = ["std", "env-filter"] }
anyhow = "1.0.57"
thiserror = "1.0.31"
mime = "0.3.17"