-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
69 lines (60 loc) · 1.93 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
[package]
name = "iprs"
description = "Inter planetary specifications in rust-lang"
repository = "https://github.com/iprs-dev/iprs"
keywords = ["multiformats", "libp2p"]
version = "0.0.4"
authors = ["prataprc <[email protected]>"]
license = "MIT"
readme = "README.md"
documentation = "https://docs.rs/iprs/"
edition = "2018"
[[bin]]
name = "ipfs"
required-features = ["build-ipfs"]
[dependencies]
log = { version = "0.4", features = ["max_level_trace", "release_max_level_debug"] }
dirs = "3.0.1"
rand = { version = "0.7.3", features = ["small_rng"] }
regex = "1"
dns-lookup = "1.0.4"
prost = "0.6.1"
unsigned-varint = "0.5.1"
multibase = "0.8.0"
lazy_static = "1.4.0"
digest = { version = "0.9", default-features = false }
sha-1 = { version = "0.9", default-features = false }
sha2 = { version = "0.9", default-features = false }
sha3 = { version = "0.9", features = ["std"] }
blake2b_simd = { version = "0.5.9", default-features = false }
blake2s_simd = { version = "0.5.9", default-features = false }
blake3 = { version = "0.3.6", default-features = false }
md4 = "0.9.0"
md5 = "0.7.0"
skein-hash = "0.3.0"
ripemd160 = "0.9.1"
ripemd320 = "0.9.0"
k12 = "0.1.0"
zeroize = "1"
ed25519-dalek = "1.0.0-pre.4"
libsecp256k1 = { version = "0.3.5", optional = true }
bs58 = "0.3.0"
data-encoding = "2.3.0"
data-encoding-macro = { version = "0.1.8", default-features = false }
crossbeam-channel = { version = "0.4.4" }
ctrlc = { version = "3.1.6"}
simplelog = { version = "0.7.5", optional = true }
structopt = { version = "0.3.18", optional = true }
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
ring = { version = "0.16.9", features = ["alloc", "std"], default-features = false }
asn1_der = "0.6.1"
[dev-dependencies]
reqwest = { version = "0.10.8", features = ["blocking"] }
parse_int = "0.4.0"
quickcheck = "0.9.2"
[build-dependencies]
prost-build = "0.6.1"
[features]
default = ["secp256k1"]
secp256k1 = ["libsecp256k1"]
build-ipfs = ["structopt", "simplelog"]