wgautomesh/Cargo.toml

24 lines
683 B
TOML
Raw Normal View History

2023-03-09 10:42:11 +01:00
[package]
name = "wgautomesh"
version = "0.1.1"
2023-03-09 10:42:11 +01:00
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
xxhash-rust = { version = "0.8", default-features = false, features = ["xxh3"] }
anyhow = "1.0"
log = "0.4"
2024-05-22 11:58:43 +02:00
pretty_env_logger = "0.5"
2023-03-09 10:42:11 +01:00
serde = { version = "1.0.215", features = ["derive"] }
2023-03-09 10:42:11 +01:00
bincode = "1.3"
2024-05-22 11:58:43 +02:00
toml = { version = "0.8", default-features = false, features = ["parse"] }
2023-03-09 14:23:40 +01:00
xsalsa20poly1305 = "0.9"
2024-05-22 11:58:43 +02:00
blake3 = "1.5"
pnet = "0.35.0"
rupnp = "2.0.0"
tokio = { version = "1.41.1", features = ["rt", "rt-multi-thread", "macros"] }
futures = "0.3.31"
2025-01-15 10:44:39 +01:00
ipnet = { version = "2.10.1", features = ["serde"] }