This repository was archived by the owner on Aug 12, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCargo.toml
More file actions
89 lines (83 loc) · 2.55 KB
/
Cargo.toml
File metadata and controls
89 lines (83 loc) · 2.55 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
[workspace]
resolver = "2"
members = ["crates/*"]
default-members = ["crates/storb_cli"]
[workspace.package]
version = "0.2.4"
description = "An object storage subnet on the Bittensor network"
edition = "2021"
authors = ["Storb Technologies Ltd"]
homepage = "https://storb.dev"
license = "MIT"
readme = "README.md"
[workspace.dependencies]
# Storb
storb_base = { version = "*", path = "crates/storb_base" }
storb_miner = { version = "*", path = "crates/storb_miner" }
storb_validator = { version = "*", path = "crates/storb_validator" }
# Crabtensor
crabtensor = { git = "https://github.com/storb-tech/crabtensor.git", tag = "v0.6.0" }
sp-core = "36.1.0"
subxt = "0.41.0"
# Third party
anyhow = "1.0.95"
axum = { version = "0.8.1", features = ["multipart", "macros"] }
async-trait = "0.1"
bimap = "0.6.3"
bincode = "1.3.3"
blake3 = "1.5.5"
bytes = "1.9.0"
chrono = { version = "0.4.39", features = ["serde"] }
clap = { version = "4.5.26", features = ["derive"] }
config = { version = "0.15.6", features = ["toml"] }
dashmap = "6.1.0"
dirs = "6.0.0"
ed25519-dalek = { version = "2.1.1", features = ["serde", "pkcs8"] }
expanduser = "1.2.2"
futures = "0.3.31"
hex = "0.4.3"
libp2p = { version = "0.55.0", features = ["full", "serde"] }
lru = "0.13.0"
ndarray = { version = "0.16.1", features = ["serde"] }
opentelemetry = { version = "0.29.1", default-features = false, features = [
"trace",
] }
opentelemetry_sdk = { version = "0.29.0", default-features = false, features = [
"trace",
] }
opentelemetry-otlp = "0.29.0"
opentelemetry-appender-tracing = "0.29.1"
quinn = "0.11.2"
r2d2 = "0.8"
r2d2_sqlite = "0.28"
rand = "0.8.5"
rcgen = { version = "0.13.2", features = ["crypto", "pem", "ring"] }
reqwest = { version = "0.12.12", features = ["json"] }
rusqlite = { version = "0.35.0", features = ["bundled", "backup", "load_extension"] }
rustls = { version = "0.23.22" }
serde = { version = "1.0.217", features = ["derive"] }
serde_json = { version = "1.0.137" }
tempfile = "3.2.0"
thiserror = "2.0.11"
tokio = { version = "1.44.2", features = ["full"] }
tokio-serde = { version = "0.9.0", features = ["serde"] }
tokio-stream = "0.1.17"
tracing = "0.1.41"
tracing-appender = "0.2.3"
tracing-subscriber = { version = "0.3.19", features = [
"ansi",
"env-filter",
"fmt",
"registry",
"std",
] }
ureq = "3.0.11"
utoipa = "5"
uuid = "1.12.1"
zfec-rs = { git = "https://github.com/thornleywalker/zfec-rs.git", rev = "3f3a3720def2294dc62e65f614862f1a7ddd3187" }
zip = "4.0.0"
[workspace.lints.clippy]
uninlined_format_args = "allow"
[profile.release]
codegen-units = 1
opt-level = 2