forked from helium/helium-wallet-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
55 lines (49 loc) · 1.41 KB
/
Cargo.toml
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
[package]
name = "helium-wallet"
version = "1.7.8"
authors = ["Helium <[email protected]>"]
edition = "2021"
description = "A Rust Helium Wallet library"
readme = "README.md"
keywords = ["helium", "blockchain", "wallet"]
homepage = "https://developer.helium.com/blockchain/blockchain-cli"
repository = "https://github.com/helium/helium-wallet-rs"
license = "Apache-2.0"
[[bin]]
name = "helium-wallet"
path = "src/main.rs"
doc = false
[dependencies]
anyhow = "1.0"
byteorder = "1.3.2"
structopt = "0.3"
dialoguer = "0.8"
sodiumoxide = "~0.2"
hex = "0.4"
hmac = "0.12"
sha2 = "0.10"
base64 = "0"
reqwest = {version = "0", default-features=false, features=["rustls-tls"]}
pbkdf2 = {version = "0", default-features=false }
aes-gcm = "0"
shamirsecretsharing = {version="0.1.5", features=["have_libsodium"]}
prettytable-rs = "0.8"
lazy_static = "1"
regex = "1"
rand = "0.8"
qr2term = "0.2"
serde = "1"
serde_derive = "1"
serde_json = "1"
rust_decimal = {version = "1", features = ["serde-float"] }
h3ron = "^0.13"
geo-types = "*"
helium-api = { git = "https://github.com/helium/helium-api-rs" }
angry-purple-tiger = "0"
helium-crypto = { git = "https://github.com/helium/helium-crypto-rs", features = ["multisig", "solana"]}
helium-proto = { git = "https://github.com/helium/proto", branch="master"}
solana-sdk = "1"
tokio = {version = "1", features = ["full"]}
bitvec = "*" # inherits from elliptic-curve crate
[dev-dependencies]
bs58 = "0.4"