[package]
edition = "2021"
name = "baelNET"
version = "3.4.1"
authors = ["Rodolfo Rodrigues <dev_rodts@outlook.com>"]
build = false
exclude = [
"test_files/**",
"research/**",
".github/**",
"wintun.dll",
"Dockerfile",
"README_reproduce.md",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "BaelNET: Post-Quantum Hybrid Encryption with high throughput and authenticated wire format."
documentation = "https://docs.rs/baelNET"
readme = "README.md"
keywords = [
"post-quantum",
"encryption",
"ratchet",
"performance",
"hybrid",
]
categories = [
"cryptography",
"network-programming",
"command-line-utilities",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/devrodts/Bael-Crypt"
[lib]
name = "baelNET"
path = "src/lib.rs"
[[bin]]
name = "baelNET"
path = "src/main.rs"
[[bin]]
name = "bael_vpn"
path = "src/bin/bael_vpn.rs"
[[bin]]
name = "benchmark"
path = "src/bin/benchmark.rs"
[[bin]]
name = "file_enc"
path = "src/bin/file_enc.rs"
[[test]]
name = "integration_tests"
path = "tests/integration_tests.rs"
[[test]]
name = "security_hardening"
path = "tests/security_hardening.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.blake3]
version = "1.5.0"
[dependencies.chacha20poly1305]
version = "0.10.1"
[dependencies.env_logger]
version = "0.11.8"
[dependencies.log]
version = "0.4.29"
[dependencies.pqc_kyber]
version = "0.7.0"
[dependencies.rand]
version = "0.8.5"
[dependencies.rayon]
version = "1.10"
[dependencies.wintun]
version = "0.5.1"
[dependencies.x25519-dalek]
version = "2.0.0"
features = [
"static_secrets",
"getrandom",
]
[dependencies.zeroize]
version = "1.7.0"
features = ["derive"]
[target."cfg(unix)".dependencies.libc]
version = "0.2"
[target."cfg(windows)".dependencies.winapi]
version = "0.3.9"
features = [
"handleapi",
"processthreadsapi",
"securitybaseapi",
"winnt",
]