forked from helium/helium-crypto-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
31 lines (26 loc) · 758 Bytes
/
Cargo.toml
File metadata and controls
31 lines (26 loc) · 758 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
[package]
name = "helium-crypto"
version = "0.3.4"
authors = ["Marc Nijdam <marc@helium.com>"]
edition = "2018"
license = "Apache-2.0"
[dependencies]
thiserror = "1"
bs58 = {version = "0.4", features=["check"]}
base64 = "0"
signature = "*"
serde = "1"
rand_core = { version = "0.6", features = ["getrandom"] }
ed25519-dalek = { git = "https://github.com/helium/ed25519-dalek", branch = "madninja/bump_rand" }
p256 = { version="0.10.0", default-features=false, features=["arithmetic", "ecdsa", "sha256", "ecdh"] }
ecc608-linux = { version = "0", optional = true}
multihash = {version = "0", optional = true}
[features]
default = []
ecc608 = [ "ecc608-linux" ]
multisig = ["multihash"]
[dev-dependencies]
hex = "0"
hex-literal = "0"
rand = "*"
sha2 = "*"