This repository has been archived by the owner on Apr 25, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
61 lines (55 loc) · 2.15 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
[package]
name = "drop"
version = "0.1.0"
authors = [ "Ogier Bouvier <ogier@bouvier.family", "Matteo Monti <matteo.monti@epfl.ch>" ]
edition = "2021"
homepage = "https://github.com/Distributed-EPFL/drop"
repository = "https://github.com/Distributed-EPFL/drop"
documentation = "https://docs.rs/drop/0.1.0/drop"
license = "AGPL-3.0-or-later"
description="""
An asynchronous framework for the development of distributed systems
"""
categories = [ "asynchronous", "network", "distributed-systems", "cryptography" ]
keywords = [ "distributed", "async", "crypto" ]
readme="README.md"
[dependencies]
async-trait = { version = "0.1", optional = true }
async-utp = { version = "0.8.0-alpha1", optional = true }
backoff = { version = "0.3", features = ["tokio"] }
bincode = "~1.3"
blake3 = "1"
blst = { version = "0.3", optional = true }
crypto_kx = { version = "0.0.1", features = ["serde"] }
crypto_secretstream = "0.0.1"
drop-derive = { version = "0.1.0" }
ed25519-dalek = { version = "1", features = [ "serde" ] }
futures = { version = "0.3", optional = true }
hex = "0.4"
peroxide = { version = "0.30", optional = true }
postage = { version = "0.4", features = [ "logging", "futures-traits" ] }
rand = "0.8"
serde = { version = "~1.0", features = [ "derive", "rc" ] }
snafu = "~0.6"
tokio = { version = "1", features = [ "net", "sync", "rt", "io-util", "time" ], optional = true }
tracing-futures = { version = "0.2", optional = true }
tracing-subscriber = { version = "0.3", optional = true }
tracing = { version = "0.1", optional = true }
# pending inclusion of stream in std
async-stream = "0.3"
tokio-stream = "0.1"
[target.'cfg(target_family = "wasm")'.dependencies]
getrandom = { version = "0.2", features = ["js"] }
[dev-dependencies]
drop = { path = ".", features = [ "system" ] }
tokio = { version = "1", features = [ "macros", "rt-multi-thread" ] }
tracing = "0.1"
tracing-futures = "0.2"
tracing-subscriber = "0.3"
[features]
default = []
test = [ "system", "tracing-subscriber" ]
net = [ "tokio", "futures", "async-trait", "tracing", "tracing-futures" ]
system = [ "peroxide", "net" ]
# These features are not quite stable yet and should be enabled with care
unstable = [ "net", "async-utp" ]