forked from RaoFoundation/btwallet
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
57 lines (52 loc) · 1.52 KB
/
Copy pathCargo.toml
File metadata and controls
57 lines (52 loc) · 1.52 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
[package]
name = "btwallet"
version = "4.1.0"
edition = "2021"
license = "MIT"
description = "Bittensor wallet — Substrate-based key management, encryption, and signing."
repository = "https://github.com/opentensor/btwallet"
homepage = "https://github.com/opentensor/btwallet"
documentation = "https://docs.rs/btwallet"
readme = "CRATE_README.md"
keywords = ["bittensor", "wallet", "substrate", "crypto", "keypair"]
categories = ["cryptography", "cryptography::cryptocurrencies"]
rust-version = "1.74"
include = ["src/**/*", "Cargo.toml", "LICENSE", "CRATE_README.md"]
[lib]
name = "bittensor_wallet"
path = "src/lib.rs"
crate-type = ["cdylib", "rlib"]
[dependencies]
sp-core = "34.0.0"
bip39 = { version = "2.2.2", 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, <7.5"
clap = "4.5.21"
thiserror = "2.0.3"
pyo3 = { version = "0.26.0", features = ["generate-import-lib"], optional = true }
[dependencies.openssl-sys]
version = "0.9"
optional = true
features = ["vendored"]
[package.metadata.docs.rs]
features = ["vendored-openssl"]
targets = ["x86_64-unknown-linux-gnu"]
[features]
default = []
python-bindings = ["dep:pyo3"]
extension-module = ["python-bindings", "pyo3/extension-module"]
vendored-openssl = ["openssl-sys/vendored"]