Alex Auvolat
70839d70d8
All checks were successful
continuous-integration/drone/push Build is passing
51 lines
1.5 KiB
TOML
51 lines
1.5 KiB
TOML
[package]
|
|
name = "netapp"
|
|
version = "0.3.0"
|
|
authors = ["Alex Auvolat <alex@adnab.me>"]
|
|
edition = "2018"
|
|
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"]
|
|
|
|
[lib]
|
|
name = "netapp"
|
|
|
|
[features]
|
|
default = []
|
|
basalt = ["lru", "rand"]
|
|
|
|
[dependencies]
|
|
futures = "0.3.17"
|
|
tokio = { version = "1.0", default-features = false, features = ["net", "rt", "rt-multi-thread", "sync", "time", "macros", "io-util", "signal"] }
|
|
tokio-util = { version = "0.6.8", default-features = false, features = ["compat"] }
|
|
tokio-stream = "0.1.7"
|
|
|
|
serde = { version = "1.0", default-features = false, features = ["derive"] }
|
|
rmp-serde = "0.14.3"
|
|
hex = "0.4.2"
|
|
base64 = "0.12.1"
|
|
hexdump = "0.1.1"
|
|
|
|
rand = { version = "0.5.5", optional = true }
|
|
|
|
log = "0.4.8"
|
|
env_logger = "0.8"
|
|
arc-swap = "1.1"
|
|
async-trait = "0.1.7"
|
|
err-derive = "0.2.3"
|
|
bytes = "0.6.0"
|
|
lru = { version = "0.6", optional = true }
|
|
|
|
sodiumoxide = { version = "0.2.5-0", package = "kuska-sodiumoxide" }
|
|
kuska-handshake = { version = "0.2.0", git = "https://github.com/Alexis211/handshake", branch = "tokio1.0", features = ["default", "async_std"] }
|
|
|
|
[dev-dependencies]
|
|
structopt = { version = "0.3", default-features = false }
|
|
chrono = "0.4"
|
|
|
|
[package.metadata.cargo-all-features]
|
|
skip_optional_dependencies = true
|