netapp/Cargo.toml

41 lines
1.1 KiB
TOML
Raw Normal View History

2020-12-02 13:30:47 +01:00
[package]
name = "netapp"
version = "0.1.0"
2020-12-12 19:08:57 +01:00
authors = ["Alex Auvolat <alex@adnab.me>"]
2020-12-02 13:30:47 +01:00
edition = "2018"
2020-12-14 11:35:41 +01:00
license-file = "LICENSE"
description = "A toolkit library for distributed software"
homepage = "https://git.deuxfleurs.fr/lx/netapp"
repository = "https://git.deuxfleurs.fr/lx/netapp"
readme = "README.md"
keywords = ["protocol", "rpc", "mesh", "distributed"]
categories = ["asynchronous", "network-programming"]
2020-12-02 13:30:47 +01:00
2020-12-14 11:35:41 +01:00
[lib]
name = "netapp"
2020-12-02 13:30:47 +01:00
[dependencies]
2020-12-12 19:08:57 +01:00
async-std = { version = "1.5.0", default-features = false }
tokio = { version = "0.2", default-features = false, features = ["net", "tcp", "rt-core", "rt-threaded", "sync", "time", "macros"] }
2020-12-02 16:37:36 +01:00
2020-12-12 19:08:57 +01:00
serde = { version = "1.0", default-features = false, features = ["derive"] }
2020-12-02 16:37:36 +01:00
rmp-serde = "0.14.3"
2020-12-02 13:30:47 +01:00
hex = "0.4.2"
2020-12-02 16:37:36 +01:00
base64 = "0.12.1"
structopt = { version = "0.3", default-features = false }
rand = "0.5.5"
2020-12-04 13:58:34 +01:00
chrono = "0.4"
2020-12-02 16:37:36 +01:00
2020-12-02 13:30:47 +01:00
log = "0.4.8"
2020-12-04 13:58:34 +01:00
env_logger = "0.8"
2020-12-14 11:36:39 +01:00
arc-swap = "1.1"
2020-12-02 13:30:47 +01:00
async-trait = "0.1.7"
err-derive = "0.2.3"
bytes = "0.6.0"
lru = "0.6"
2020-12-02 16:37:36 +01:00
2020-12-12 19:08:57 +01:00
sodiumoxide = { version = "0.2.5-0", package = "kuska-sodiumoxide" }
2020-12-14 11:35:41 +01:00
kuska-handshake = { version = "0.1.2", features = ["default", "tokio_compat"] }
2020-12-04 13:58:34 +01:00