-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
44 lines (41 loc) · 1.11 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
39
40
41
42
43
44
[package]
name = "trident-storage"
version = "0.0.20"
edition = "2021"
[lib]
name = "trident_storage"
path = "src/lib.rs"
[[bin]]
name = "trident-storage"
path = "bin/main.rs"
[dependencies]
anyhow = "1.0"
async-stream = "0.3"
axum = "0.7"
bisection = "0.1"
clap = { version = "4.5", features = ["derive"] }
iroh = { version = "0.26.0", branch = "main", git = "https://github.com/izihawa/iroh", features = [ "metrics" ] }
iroh-base = { version = "0.26.0", branch = "main", git = "https://github.com/izihawa/iroh" }
md5 = "0.7"
percent-encoding = "2.3.1"
rand = "0.9.0-alpha.1"
redb = { version = "2.1.3", features = ["logging"] }
serde = "1.0"
serde_json = "1.0"
serde_yaml = "0.9"
thiserror = "1.0"
tokio = { version = "1", features = ["full"] }
tokio-stream = "0.1"
tokio-util = { version = "0.7", features = ["rt"] }
tower-http = { version = "0.5", features = ["trace", "cors"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
futures = "0.3"
lru = "0.12"
tokio-task-pool = "0.1"
url = "2.5.0"
mime_guess = "2.0.4"
bytes = "1.7.1"
hyper = "1.4.1"
headers = "0.4.0"
range-collections = "0.4.5"