mirror of
https://github.com/rosenpass/rosenpass.git
synced 2025-12-12 15:49:22 -08:00
A whole bunch of close-to-the-metal crates are yielding compiler errors upon compilation with --target x86_64-unknown-hermit. MIO is not. Using hermit might necessitate relying on threads for IO instead of using MIO. https://github.com/hermit-os/kernel/issues/1043
65 lines
1.8 KiB
TOML
65 lines
1.8 KiB
TOML
[workspace]
|
|
resolver = "2"
|
|
|
|
members = [
|
|
"rosenpass",
|
|
"cipher-traits",
|
|
"ciphers",
|
|
"util",
|
|
"constant-time",
|
|
"oqs",
|
|
"to",
|
|
"fuzz",
|
|
"secret-memory",
|
|
"lenses",
|
|
"wireguard-broker",
|
|
]
|
|
|
|
default-members = [
|
|
"rosenpass",
|
|
"wireguard-broker"
|
|
]
|
|
|
|
[workspace.metadata.release]
|
|
# ensure that adding `--package` as argument to `cargo release` still creates version tags in the form of `vx.y.z`
|
|
tag-prefix = ""
|
|
|
|
[workspace.dependencies]
|
|
rosenpass = { path = "rosenpass" }
|
|
rosenpass-util = { path = "util" }
|
|
rosenpass-constant-time = { path = "constant-time" }
|
|
rosenpass-cipher-traits = { path = "cipher-traits" }
|
|
rosenpass-ciphers = { path = "ciphers" }
|
|
rosenpass-to = { path = "to" }
|
|
rosenpass-secret-memory = { path = "secret-memory" }
|
|
rosenpass-oqs = { path = "oqs" }
|
|
rosenpass-lenses = { path = "lenses" }
|
|
rosenpass-wireguard-broker = { path = "wireguard-broker" }
|
|
criterion = "0.4.0"
|
|
test_bin = "0.4.0"
|
|
libfuzzer-sys = "0.4"
|
|
stacker = "0.1.15"
|
|
doc-comment = "0.3.3"
|
|
base64 = "0.21.5"
|
|
zeroize = "1.7.0"
|
|
memoffset = "0.9.0"
|
|
thiserror = "1.0.50"
|
|
paste = "1.0.14"
|
|
env_logger = "0.10.1"
|
|
toml = "0.7.8"
|
|
static_assertions = "1.1.0"
|
|
allocator-api2 = "0.2.14"
|
|
allocator-api2-tests = "0.2.14"
|
|
rand = "0.8.5"
|
|
wireguard-uapi = "3.0.0"
|
|
typenum = "1.17.0"
|
|
log = { version = "0.4.20" }
|
|
clap = { version = "4.4.10", features = ["derive"] }
|
|
serde = { version = "1.0.193", features = ["derive"] }
|
|
arbitrary = { version = "1.3.2", features = ["derive"] }
|
|
anyhow = { version = "1.0.75", features = ["backtrace", "std"] }
|
|
mio = { version = "0.8.9", features = ["net"] }
|
|
oqs-sys = { version = "0.8", default-features = false, features = ['classic_mceliece', 'kyber'] }
|
|
blake2 = "0.10.6"
|
|
chacha20poly1305 = { version = "0.10.1", default-features = false, features = [ "std", "heapless" ] }
|