netapp/Cargo.toml

34 lines
990 B
TOML
Raw Normal View History

2020-12-02 12:30:47 +00:00
[package]
name = "netapp"
version = "0.1.0"
authors = ["Alex Auvolat <alex.auvolat@inria.fr>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
async-std = { version = "1.5.0", features=["unstable","attributes"] }
tokio = { version = "0.2", features = ["full"] }
2020-12-02 15:37:36 +00:00
serde = { version = "1.0", default-features = false, features = ["derive", "rc"] }
rmp-serde = "0.14.3"
2020-12-02 12:30:47 +00:00
hex = "0.4.2"
2020-12-02 15:37:36 +00:00
base64 = "0.12.1"
structopt = { version = "0.3", default-features = false }
rand = "0.5.5"
2020-12-04 12:58:34 +00:00
chrono = "0.4"
2020-12-02 15:37:36 +00:00
2020-12-02 12:30:47 +00:00
log = "0.4.8"
2020-12-04 12:58:34 +00:00
env_logger = "0.8"
2020-12-02 12:30:47 +00:00
arc-swap = "1.0"
async-trait = "0.1.7"
err-derive = "0.2.3"
bytes = "0.6.0"
lru = "0.6"
2020-12-02 15:37:36 +00:00
sodiumoxide = { git = "https://github.com/Dhole/sodiumoxidez", branch = "extra" }
2020-12-07 17:07:55 +00:00
kuska-handshake = { path = "../handshake", features = ["default", "tokio_compat"] }
#kuska-handshake = { git = "https://github.com/kuska-ssb/handshake", branch = "master", features = ["default", "tokio_compat"] }
2020-12-04 12:58:34 +00:00