-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
45 lines (42 loc) · 1.1 KB
/
Cargo.toml
File metadata and controls
45 lines (42 loc) · 1.1 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
43
44
45
[package]
name = "s5_cli"
version = "1.0.0-beta.1"
edition = "2024"
description = "Command line interface for the S5 decentralized storage network"
repository = "https://github.com/s5-dev/s5-rs"
license = "MIT OR Apache-2.0"
[[bin]]
bench = false
name = "s5"
path = "src/main.rs"
test = false
[dependencies]
anyhow = "1.0.99"
clap = { version = "4.5.45", features = ["derive"] }
clap-verbosity-flag = { version = "3.0.4", default-features = false, features = [
"tracing",
] }
directories = "6.0.0"
s5_importer_http.workspace = true
rand = "0.9.2"
s5_core.workspace = true
s5_fs.workspace = true
s5_importer_local.workspace = true
s5_node.workspace = true
# CLI needs full tokio features (native-only crate)
tokio = { version = "1.48.0", features = ["full"] }
toml = "0.9.5"
toml_edit = "0.23.4"
tracing = "0.1.41"
tracing-subscriber = "0.3.19"
iroh.workspace = true
s5_blobs = { workspace = true, features = ["server"] }
base64 = "0.22"
hex = "0.4.3"
s5_fuse.workspace = true
s5_registry_redb.workspace = true
s5_store_local.workspace = true
url = "2.5"
[dev-dependencies]
blake3.workspace = true
bytes.workspace = true