2022-08-08 06:10:32 +00:00
|
|
|
[package]
|
|
|
|
name = "distant-net"
|
|
|
|
description = "Network library for distant, providing implementations to support client/server architecture"
|
|
|
|
categories = ["network-programming"]
|
|
|
|
keywords = ["api", "async"]
|
|
|
|
version = "0.17.0"
|
|
|
|
authors = ["Chip Senkbeil <chip@senkbeil.org>"]
|
|
|
|
edition = "2021"
|
|
|
|
homepage = "https://github.com/chipsenkbeil/distant"
|
|
|
|
repository = "https://github.com/chipsenkbeil/distant"
|
|
|
|
readme = "README.md"
|
|
|
|
license = "MIT OR Apache-2.0"
|
|
|
|
|
|
|
|
[dependencies]
|
2022-08-08 16:51:18 +00:00
|
|
|
async-trait = "0.1.57"
|
|
|
|
bytes = "1.2.1"
|
|
|
|
chacha20poly1305 = "0.10.0"
|
2022-08-08 06:10:32 +00:00
|
|
|
derive_more = { version = "0.99.17", default-features = false, features = ["as_mut", "as_ref", "deref", "deref_mut", "display", "from", "error", "into", "into_iterator", "is_variant", "try_into"] }
|
|
|
|
futures = "0.3.21"
|
|
|
|
hex = "0.4.3"
|
|
|
|
hkdf = "0.12.3"
|
|
|
|
log = "0.4.17"
|
2022-08-08 16:51:18 +00:00
|
|
|
paste = "1.0.8"
|
2022-08-08 06:10:32 +00:00
|
|
|
p256 = { version = "0.11.1", features = ["ecdh", "pem"] }
|
2022-08-08 16:51:18 +00:00
|
|
|
rand = { version = "0.8.5", features = ["getrandom"] }
|
2022-08-08 06:10:32 +00:00
|
|
|
rmp-serde = "1.1.0"
|
|
|
|
sha2 = "0.10.2"
|
2022-08-08 16:51:18 +00:00
|
|
|
serde = { version = "1.0.142", features = ["derive"] }
|
|
|
|
serde_bytes = "0.11.7"
|
|
|
|
tokio = { version = "1.20.1", features = ["full"] }
|
|
|
|
tokio-util = { version = "0.7.3", features = ["codec"] }
|
2022-08-08 06:10:32 +00:00
|
|
|
|
|
|
|
# Optional dependencies based on features
|
|
|
|
schemars = { version = "0.8.10", optional = true }
|
|
|
|
|
|
|
|
[dev-dependencies]
|
2022-08-08 16:51:18 +00:00
|
|
|
tempfile = "3.3.0"
|