forked from one-covenant/bittensor-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
47 lines (45 loc) · 1.4 KB
/
Cargo.toml
File metadata and controls
47 lines (45 loc) · 1.4 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
[workspace]
members = ["bittensor-rs", "lightning-tensor"]
resolver = "2"
[workspace.dependencies]
clap = { version = "4.5.9", features = ["derive"] }
codec = { package = "parity-scale-codec", version = "3.6.1", default-features = false, features = [
"derive",
] }
parity-scale-codec = { version = "3.6.1", default-features = false, features = ["derive"] }
sp-core = "34.0.0"
substrate-api-client = { version = "0.18.0", features = ["ws-client"] }
thiserror = "1.0.62"
tokio = { version = "1.38.0", features = ["full"] }
frame-support = "36.0.0"
scale-info = "2.11.3"
subkey = "17.0.0"
sp-runtime = "38.0.0"
rand = "0.8.5"
base64 = "0.22.1"
aes-gcm = "0.10.3"
bip39 = "2.0.0"
serde = { version = "1.0.204", features = ["derive"] }
serde_json = "1.0.120"
dirs = "5.0.1"
sha2 = "0.10.8"
sp-application-crypto = "37.0.0"
hex = "0.4.3"
log = "0.4.22"
env_logger = "0.11.3"
simplelog = "0.12.2"
parking_lot = "0.12.3"
futures = "0.3.30"
subxt = "0.44.0"
subxt-signer = { version = "0.44.0", features = ["sr25519"] }
pyo3 = { version = "0.20.0", features = ["extension-module"] }
pyo3-asyncio = { version = "0.20.0", features = ["tokio-runtime"] }
# Additional dependencies for bittensor-rs
async-trait = "0.1.83"
anyhow = "1.0.86"
tracing = "0.1.40"
chrono = { version = "0.4.38", features = ["serde"] }
home = "0.5.9"
subxt-codegen = { version = "0.44.0", default-features = false }
subxt-metadata = "0.44.0"
wiremock = "0.6.2"