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"]
|
2023-05-24 16:41:19 +00:00
|
|
|
version = "0.20.0-alpha.7"
|
2022-08-08 06:10:32 +00:00
|
|
|
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]
|
2023-04-01 03:15:25 +00:00
|
|
|
async-trait = "0.1.68"
|
|
|
|
bytes = "1.4.0"
|
2022-11-20 23:13:00 +00:00
|
|
|
chacha20poly1305 = "0.10.1"
|
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"] }
|
2023-05-28 01:39:26 +00:00
|
|
|
distant-auth = { version = "=0.20.0-alpha.7", path = "../distant-auth" }
|
2023-04-01 03:15:25 +00:00
|
|
|
dyn-clone = "1.0.11"
|
|
|
|
flate2 = "1.0.25"
|
2022-08-08 06:10:32 +00:00
|
|
|
hex = "0.4.3"
|
|
|
|
hkdf = "0.12.3"
|
|
|
|
log = "0.4.17"
|
2023-04-01 03:15:25 +00:00
|
|
|
paste = "1.0.12"
|
|
|
|
p256 = { version = "0.13.0", features = ["ecdh", "pem"] }
|
2022-08-08 16:51:18 +00:00
|
|
|
rand = { version = "0.8.5", features = ["getrandom"] }
|
2022-11-20 23:13:00 +00:00
|
|
|
rmp-serde = "1.1.1"
|
|
|
|
sha2 = "0.10.6"
|
2023-04-01 03:15:25 +00:00
|
|
|
serde = { version = "1.0.159", features = ["derive"] }
|
|
|
|
serde_bytes = "0.11.9"
|
2022-11-20 02:27:49 +00:00
|
|
|
strum = { version = "0.24.1", features = ["derive"] }
|
2023-04-01 03:15:25 +00:00
|
|
|
tokio = { version = "1.27.0", features = ["full"] }
|
2022-08-08 06:10:32 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2023-05-28 01:39:26 +00:00
|
|
|
distant-auth = { version = "=0.20.0-alpha.7", path = "../distant-auth", features = ["tests"] }
|
2023-04-01 03:15:25 +00:00
|
|
|
env_logger = "0.10.0"
|
|
|
|
serde_json = "1.0.95"
|
|
|
|
tempfile = "3.5.0"
|
2022-11-20 02:27:49 +00:00
|
|
|
test-log = "0.2.11"
|