-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCargo.toml
More file actions
42 lines (40 loc) · 1.35 KB
/
Cargo.toml
File metadata and controls
42 lines (40 loc) · 1.35 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
[package]
name = "kernelci-storage"
version = "0.2.0"
edition = "2021"
[dependencies]
async-trait = "0.1"
axum = { version = "0.7.9", features = ["tracing", "multipart", "macros"] }
axum-server = { version = "0.8.0", features = ["rustls", "tls-rustls"] }
azure_blob_uploader = "0.1.4"
azure_storage = "0.21.0"
azure_storage_blobs = "0.21.0"
bytes = "1.9"
chksum-hash-sha2-512 = "0.0.1"
chrono = "0.4.39"
clap = { version = "4.5.23", features = ["derive"] }
fs2 = "0.4.3"
futures = "0.3.31"
futures-util = "0.3.31"
headers = "0.4.0"
hex = "0.4.3"
http-body-util = "0.1.2"
jsonwebtoken = { version = "10", features = ["rust_crypto"] }
rand = "0.8.5"
reqwest = { version = "0.12.9", features = ["blocking"] }
rustls = "0.23.20"
serde = { version = "1.0.216", features = ["derive"] }
sysinfo = { version = "0.35.2", features = ["serde"] }
tempfile = "3.14.0"
tokio = { version = "1.42.0", features = ["rt", "rt-multi-thread", "macros"] }
tokio-util = "0.7.13"
toml = "1.1.2"
tower = "0.5.2"
tower-http = { version = "0.6.2", features = ["trace", "fs", "limit"] }
tracing = "0.1.41"
tracing-subscriber = "0.3.19"
[dev-dependencies]
reqwest = { version = "0.12.9", features = ["blocking", "multipart"] }
jsonwebtoken = { version = "10", features = ["rust_crypto"] }
tokio = { version = "1.42.0", features = ["rt", "rt-multi-thread", "macros", "time", "process"] }
tempfile = "3.14.0"