-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
28 lines (26 loc) · 726 Bytes
/
Cargo.toml
File metadata and controls
28 lines (26 loc) · 726 Bytes
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
[package]
name = "magnetize"
version = "0.1.0"
edition = "2024"
[[bin]]
name = "mag"
path = "src/bin/main.rs"
[dependencies]
axum = { version = "0.8.4", features = ["multipart"] }
clap = { version = "4.5.38", features = ["derive"] }
data-encoding = "2.9.0"
reqwest = { version = "0.12.15", features = ["blocking"] }
serde = { version = "1.0.219", features = ["derive"] }
sha2 = "0.10.9"
thiserror = "2.0.12"
tokio = { version = "1.45.0", features = [
"fs",
"io-std",
"io-util",
"rt",
"rt-multi-thread",
] }
tower-http = { version = "0.6.6", features = ["trace"] }
tracing = "0.1.41"
tracing-subscriber = { version = "0.3.19", features = ["env-filter"] }
url = { version = "2.5.4", features = ["serde"] }