mirror of
https://github.com/rosenpass/rosenpass.git
synced 2025-12-05 20:40:02 -08:00
Before this change, the patch release was left open. This patch pinpoints it exactly, down to the patch release. Signed-off-by: wucke13 <wucke13+github@gmail.com>
48 lines
1.3 KiB
TOML
48 lines
1.3 KiB
TOML
[package]
|
|
name = "rp"
|
|
version = "0.2.1"
|
|
edition = "2021"
|
|
license = "MIT OR Apache-2.0"
|
|
description = "Build post-quantum-secure VPNs with WireGuard!"
|
|
homepage = "https://rosenpass.eu/"
|
|
repository = "https://github.com/rosenpass/rosenpass"
|
|
rust-version = "1.77.0"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
anyhow = { workspace = true }
|
|
base64ct = { workspace = true }
|
|
serde = { workspace = true }
|
|
toml = { workspace = true }
|
|
x25519-dalek = { workspace = true, features = ["static_secrets"] }
|
|
zeroize = { workspace = true }
|
|
|
|
rosenpass = { workspace = true }
|
|
rosenpass-ciphers = { workspace = true }
|
|
rosenpass-cipher-traits = { workspace = true }
|
|
rosenpass-secret-memory = { workspace = true }
|
|
rosenpass-util = { workspace = true }
|
|
rosenpass-wireguard-broker = { workspace = true }
|
|
|
|
tokio = { workspace = true }
|
|
|
|
futures = { workspace = true }
|
|
futures-util = { workspace = true }
|
|
|
|
[target.'cfg(any(target_os = "linux", target_os = "freebsd"))'.dependencies]
|
|
ctrlc-async = "3.2"
|
|
genetlink = "0.2"
|
|
rtnetlink = "0.14"
|
|
netlink-packet-core = "0.7"
|
|
netlink-packet-generic = "0.3"
|
|
netlink-packet-wireguard = "0.2"
|
|
|
|
[dev-dependencies]
|
|
tempfile = { workspace = true }
|
|
stacker = { workspace = true }
|
|
|
|
[features]
|
|
experiment_memfd_secret = []
|
|
experiment_libcrux = ["rosenpass-ciphers/experiment_libcrux_all"]
|