mirror of
https://github.com/rosenpass/rosenpass.git
synced 2025-12-25 04:17:06 -08:00
Bumps [clap](https://github.com/clap-rs/clap) from 4.5.4 to 4.5.6. - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/clap_complete-v4.5.4...v4.5.6) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
78 lines
2.2 KiB
TOML
78 lines
2.2 KiB
TOML
[workspace]
|
|
resolver = "2"
|
|
|
|
members = [
|
|
"rosenpass",
|
|
"cipher-traits",
|
|
"ciphers",
|
|
"util",
|
|
"constant-time",
|
|
"oqs",
|
|
"to",
|
|
"fuzz",
|
|
"secret-memory",
|
|
"rp",
|
|
"wireguard-broker"
|
|
]
|
|
|
|
default-members = [
|
|
"rosenpass",
|
|
"rp",
|
|
"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-wireguard-broker = { path = "wireguard-broker" }
|
|
doc-comment = "0.3.3"
|
|
base64ct = {version = "1.6.0", default-features=false}
|
|
zeroize = "1.8.1"
|
|
memoffset = "0.9.1"
|
|
thiserror = "1.0.61"
|
|
paste = "1.0.15"
|
|
env_logger = "0.10.2"
|
|
toml = "0.7.8"
|
|
static_assertions = "1.1.0"
|
|
allocator-api2 = "0.2.14"
|
|
memsec = "0.6.3"
|
|
rand = "0.8.5"
|
|
typenum = "1.17.0"
|
|
log = { version = "0.4.21" }
|
|
clap = { version = "4.5.6", features = ["derive"] }
|
|
serde = { version = "1.0.203", features = ["derive"] }
|
|
arbitrary = { version = "1.3.2", features = ["derive"] }
|
|
anyhow = { version = "1.0.86", features = ["backtrace", "std"] }
|
|
mio = { version = "0.8.11", features = ["net", "os-poll"] }
|
|
oqs-sys = { version = "0.9.1", default-features = false, features = ['classic_mceliece', 'kyber'] }
|
|
blake2 = "0.10.6"
|
|
chacha20poly1305 = { version = "0.10.1", default-features = false, features = [ "std", "heapless" ] }
|
|
zerocopy = { version = "0.7.34", features = ["derive"] }
|
|
home = "0.5.9"
|
|
derive_builder = "0.20.0"
|
|
tokio = { version = "1.38", features = ["macros", "rt-multi-thread"] }
|
|
postcard= {version = "1.0.8", features = ["alloc"]}
|
|
|
|
#Dev dependencies
|
|
serial_test = "3.1.1"
|
|
tempfile="3"
|
|
stacker = "0.1.15"
|
|
libfuzzer-sys = "0.4"
|
|
test_bin = "0.4.0"
|
|
criterion = "0.4.0"
|
|
allocator-api2-tests = "0.2.15"
|
|
|
|
#Broker dependencies (might need cleanup or changes)
|
|
wireguard-uapi = "3.0.0"
|
|
command-fds = "0.2.3"
|
|
rustix = { version = "0.38.27", features = ["net"] } |