-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathCargo.toml
More file actions
43 lines (39 loc) · 913 Bytes
/
Cargo.toml
File metadata and controls
43 lines (39 loc) · 913 Bytes
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
[package]
name = "bittensor_wallet"
version = "3.0.11"
edition = "2021"
[lib]
name = "bittensor_wallet"
path = "src/lib.rs"
crate-type = ["cdylib", "rlib"]
[dependencies]
sp-core = "34.0.0"
pyo3 = { version = "0.22.4", features = ["gil-refs"] }
bip39 = { version = "2.0.0", features = ["rand"] }
hex = "0.4.3"
colored = "2.1.0"
serde_json = "1.0.128"
passwords = "3.1.16"
sodiumoxide = "0.2"
ansible-vault = "0.2.1"
fernet = "=0.2.1"
pbkdf2 = "0.12.2"
sha2 = "0.10.8"
dirs = "5.0.1"
serde = { version = "1.0.210", features = ["derive"] }
base64 = "0.22.1"
scrypt = "0.11.0"
schnorrkel = "0.11.4"
shellexpand = "3.1.0"
rpassword = "7.3.1"
clap = "4.5.21"
thiserror = "2.0.3"
[dependencies.openssl-sys]
version = "0.9"
optional = true
features = ["vendored"]
[features]
extension-module = ["pyo3/extension-module"]
vendored-openssl = ["openssl-sys/vendored"]
default = ["extension-module"]
python-bindings = []