-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
31 lines (29 loc) · 1.21 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
[package]
name = "libconsensus-dag"
version = "0.0.19"
authors = ["Samuel Marks <@SamuelMarks>"]
edition = "2018"
[dependencies]
bincode = "1.2.0"
async-timer = "0.6.1"
jemallocator = "0.3.2"
log = "0.4.8"
env_logger = "0.7.1"
syslog = "4.0.1"
os_pipe = "0.9.0"
serde = "1.0.101"
serde_derive = "1.0.101"
serde_json = "1.0.41"
to_vec = "0.1.0"
libconsensus = { git = "https://github.com/Fantom-foundation/libconsensus", version="~0.0.8" }
libtransport = { git = "https://github.com/Fantom-foundation/libtransport", version="~0.0.4" }
libtransport-tcp = { git = "https://github.com/Fantom-foundation/libtransport-tcp", version="~0.0.6" }
libcommon-rs = { git = "https://github.com/Fantom-foundation/libcommon-rs", version="~0.0.2" }
futures-preview = { version = "0.3.0-alpha.19", features = ["compat"] }
libhash = { git = "https://github.com/Fantom-foundation/libhash" }
libhash-sha3 = { git = "https://github.com/Fantom-foundation/libhash-sha3", version="~0.1.1" }
libsignature = { git = "https://github.com/Fantom-foundation/libsignature", version="~0.2.0" }
failure = "0.1.5"
sled = "0.29.2"
[dev-dependencies]
libsignature-ed25519-dalek = { git = "https://github.com/Fantom-foundation/libsignature-ed25519-dalek", version="~0.2.2" }