-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathCargo.toml
43 lines (38 loc) · 994 Bytes
/
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
[package]
name = "kadcast"
authors = ["herr-seppia <seppia@dusk.network>"]
version = "0.7.0"
edition = "2018"
description = "Implementation of the Kadcast Network Protocol."
categories = ["network-programming"]
keywords = ["p2p", "network", "kad", "peer-to-peer", "kadcast"]
license = "MPL-2.0"
repository = "https://github.com/dusk-network/kadcast"
publish = true
exclude = [".git*", "ARCHITECTURE.md", "architecture.jpg"]
[dependencies]
arrayvec = "0.7"
blake2 = "0.10"
rand = "0.8"
tokio = { version = "1", features = ["rt", "net", "sync", "time", "io-std", "rt-multi-thread", "macros"] }
raptorq = { version = "2.0", optional = true }
tracing = "0.1"
itertools = "0.10"
konst = "0.2"
socket2 = "0.4"
serde_derive = "1"
serde = "1"
humantime-serde = "1"
semver = "1"
hex = "0.4"
[dev-dependencies]
clap = "2.33.3"
rustc_tools_util = "0.2"
tracing-subscriber = "0.2"
toml = "0.5"
[features]
default = [ "raptorq" ]
diagnostics = []
[[example]]
name = "kadcast"
path = "examples/main.rs"