-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
38 lines (35 loc) · 1.01 KB
/
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 = "artifact-store"
version = "0.7.1"
repository = "https://github.com/harryzcy/artifact-store"
edition = "2021"
license = "MIT"
[dependencies]
axum = { version = "=0.7.9" }
futures-util = "=0.3.31"
hyper = { version = "=1.5.1", features = ["full"] }
hyper-util = { version = "=0.1.10", features = [
"tokio",
"server-auto",
"http1",
] }
rocksdb = { version = "=0.22.0", features = ["multi-threaded-cf"] }
serde = { version = "=1.0.215", features = ["derive"] }
serde_json = "=1.0.133"
time = { version = "=0.3.36", features = ["serde", "formatting"] }
tokio = { version = "=1.41.1", features = ["full"] }
tokio-util = { version = "=0.7.12", features = ["io"] }
tower-http = { version = "=0.6.2", features = ["trace", "timeout"] }
tower-service = "=0.3.3"
tracing = "=0.1.40"
tracing-subscriber = { version = "=0.3.18", features = ["json"] }
[dev-dependencies]
bytes = "1.6.0"
http = "1.1.0"
http-body = "1.0.0"
http-body-util = "0.1.1"
tower = "0.5.0"
[profile.release]
lto = true
strip = true
codegen-units = 1