Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1,105 changes: 1,080 additions & 25 deletions Cargo.lock

Large diffs are not rendered by default.

36 changes: 36 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@ tokio = { version = "1.48.0", features = ["full"] }
rand = "0.9"
regex = "1.10"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter", "json"] }
tracing-appender = "0.2"
chrono = { version = "0.4", features = ["serde"] }

# CRv4 / Timelock encryption dependencies (same as subtensor)
Expand All @@ -40,5 +42,39 @@ ark-std = "0.4.0"
sha2 = "0.10"
rand_chacha = "0.3"

# Wallet module dependencies
bip39 = "2.0"
argon2 = "0.5"
crypto_secretbox = "0.1"
zeroize = { version = "1.6", features = ["derive"] }
base64 = "0.22"
dirs = "5.0"

# Dendrite HTTP client dependencies
reqwest = { version = "0.12", features = ["json", "stream"] }
http = "1.0"
bytes = "1.5"
uuid = { version = "1.7", features = ["v4"] }

# Axon HTTP server dependencies
axum = { version = "0.7", features = ["macros"] }
tower = { version = "0.5", features = ["full"] }
tower-http = { version = "0.6", features = ["cors", "trace", "timeout"] }
axum-server = { version = "0.7", features = ["tls-rustls"] }

# CLI dependencies
clap = { version = "4.5", features = ["derive"] }
dialoguer = "0.11"
indicatif = "0.17"
console = "0.15"
comfy-table = "7.1"

[dev-dependencies]
tempfile = "3.23"

[[bin]]
name = "btcli"
path = "src/bin/btcli.rs"

[patch.crates-io]
w3f-bls = { git = "https://github.com/opentensor/bls", branch = "fix-no-std" }
Loading
Loading