mirror of
https://github.com/rosenpass/rosenpass.git
synced 2025-12-05 20:40:02 -08:00
- adds TOML based configuation files - with example configuratios in config-examples - reimplments arcane CLI argument parser as automaton - adds a new CLI focused arround configuration files - moves all file utility stuff from `main.rs` to `util.rs` - moves all AppServer stuff to dedicated `app_server.rs` - add mio for multi-listen-socket support (should fix #27) - consistency: rename private to secret
42 lines
1.2 KiB
TOML
42 lines
1.2 KiB
TOML
[package]
|
|
name = "rosenpass"
|
|
version = "0.1.2-rc.4"
|
|
authors = ["Karolin Varner <karo@cupdev.net>", "wucke13 <wucke13@gmail.com>"]
|
|
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"
|
|
readme = "readme.md"
|
|
|
|
[[bench]]
|
|
name = "handshake"
|
|
harness = false
|
|
|
|
[dependencies]
|
|
anyhow = { version = "1.0.52", features = ["backtrace"] }
|
|
base64 = "0.13.0"
|
|
static_assertions = "1.1.0"
|
|
memoffset = "0.6.5"
|
|
libsodium-sys-stable = { version = "1.19.26", features = ["use-pkg-config"] }
|
|
oqs-sys = { version = "0.7.1", default-features = false, features = ['classic_mceliece', 'kyber'] }
|
|
lazy_static = "1.4.0"
|
|
thiserror = "1.0.38"
|
|
paste = "1.0.11"
|
|
log = { version = "0.4.17", optional = true }
|
|
env_logger = { version = "0.10.0", optional = true }
|
|
serde = { version = "1.0.160", features = ["derive"] }
|
|
toml = "0.7.3"
|
|
clap = { version = "4.2.1", features = ["derive"] }
|
|
mio = { version = "0.8.6", features = ["net", "os-poll"] }
|
|
|
|
[build-dependencies]
|
|
anyhow = "1.0.70"
|
|
|
|
[dev-dependencies]
|
|
criterion = "0.3.5"
|
|
test_bin = "0.4.0"
|
|
|
|
[features]
|
|
default = ["log", "env_logger"]
|