forked from maidsafe/sn_dbc
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
62 lines (51 loc) · 1.22 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
[package]
name = "sn_dbc"
version = "8.3.1"
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", "DBC" ]
authors = [ "MaidSafe Developers <[email protected]>" ]
edition = "2018"
[features]
serdes = [ "serde" ]
mock = [ ]
[dependencies]
bincode = "1.3.3"
blsttc = "8.0.1"
bulletproofs = "4.0.0"
custom_debug = "~0.5.0"
hex = "0.4.3"
merlin = "3.0.0"
thiserror = "1.0.24"
[dependencies.curve25519-dalek]
package = "curve25519-dalek-ng"
version = "4.1.1"
[dependencies.serde]
version = "1.0.133"
features = [ "derive", "rc" ]
optional = true
[dependencies.tiny-keccak]
features = [ "sha3" ]
version = "2.0.0"
[dev-dependencies]
anyhow = "1.0.40"
criterion = "0.4.0"
quickcheck_macros = "1"
quickcheck = "1.0.3"
rustyline = "10.0.0"
[dev-dependencies.sn_dbc]
path = "."
features = [ "serdes", "mock" ]
[target."cfg(unix)".dev-dependencies]
termios = "0.3.3"
[target."cfg(unix)".dev-dependencies.pprof]
version = "0.11.0"
features = [ "flamegraph" ]
[[bench]]
name = "reissue"
harness = false
[[example]]
name = "mint-repl"
path = "examples/mint-repl/mint-repl.rs"