forked from dan-da/sn_dbc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
66 lines (55 loc) · 1.25 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
[package]
name = "sn_dbc"
version = "2.5.0"
description = "Safe Network DBC"
license = "MIT OR BSD-3-Clause"
repository = "https://github.com/maidsafe/sn_dbc"
documentation = "https://docs.rs/sn_dbc"
keywords = [ "Safe", "Network", "SafeNetwork", "SafeUrl", "XorUrl" ]
authors = [ "MaidSafe Developers <[email protected]>" ]
edition = "2018"
[features]
dkg = [ "bls_dkg" ]
[dependencies]
serde_json = "1.0.64"
thiserror = "1.0.24"
quickcheck = "1"
quickcheck_macros = "1"
rand = "0.7.1"
bulletproofs = "4.0.0"
curve25519-dalek-ng = "4.0.1"
merlin = "3.0.0"
blsttc = "2.3.0"
hex = "0.4.3"
[dependencies.rand8]
package = "rand"
version = "0.8.0"
[dependencies.bls_dkg]
version = "~0.6"
optional = true
[dependencies.tiny-keccak]
version = "2.0.0"
features = [ "sha3" ]
[dependencies.serde]
version = "1.0.111"
features = [ "derive", "rc" ]
[dev-dependencies]
criterion = "0.3"
anyhow = "1.0.40"
serde = "1.0.126"
rand = "0.7.1"
xor_name = "1.2.0"
rustyline = "8.0.0"
bincode = "1.3.3"
[dev-dependencies.sn_dbc]
path = "."
features = [ "dkg" ]
[target."cfg(unix)".dev-dependencies]
termios = "0.3.3"
[[bench]]
name = "reissue"
harness = false
required-features = [ "dkg" ]
[[example]]
name = "mint-repl"
path = "examples/mint-repl/mint-repl.rs"