mirror of
https://github.com/rosenpass/rosenpass.git
synced 2025-12-05 20:40:02 -08:00
Bumps [serde](https://github.com/serde-rs/serde) from 1.0.213 to 1.0.214. - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.213...v1.0.214) --- updated-dependencies: - dependency-name: serde dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
93 lines
2.7 KiB
TOML
93 lines
2.7 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.68"
|
|
paste = "1.0.15"
|
|
env_logger = "0.10.2"
|
|
toml = "0.7.8"
|
|
static_assertions = "1.1.0"
|
|
allocator-api2 = "0.2.14"
|
|
memsec = { git = "https://github.com/rosenpass/memsec.git", rev = "aceb9baee8aec6844125bd6612f92e9a281373df", features = [
|
|
"alloc_ext",
|
|
] }
|
|
rand = "0.8.5"
|
|
typenum = "1.17.0"
|
|
log = { version = "0.4.22" }
|
|
clap = { version = "4.5.20", features = ["derive"] }
|
|
clap_mangen = "0.2.24"
|
|
clap_complete = "4.5.37"
|
|
serde = { version = "1.0.214", features = ["derive"] }
|
|
arbitrary = { version = "1.3.2", features = ["derive"] }
|
|
anyhow = { version = "1.0.91", features = ["backtrace", "std"] }
|
|
mio = { version = "1.0.2", 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.35", features = ["derive"] }
|
|
home = "0.5.9"
|
|
derive_builder = "0.20.1"
|
|
tokio = { version = "1.41", features = ["macros", "rt-multi-thread"] }
|
|
postcard = { version = "1.0.10", features = ["alloc"] }
|
|
libcrux = { version = "0.0.2-pre.2" }
|
|
hex-literal = { version = "0.4.1" }
|
|
hex = { version = "0.4.3" }
|
|
heck = { version = "0.5.0" }
|
|
libc = { version = "0.2" }
|
|
uds = { git = "https://github.com/rosenpass/uds" }
|
|
|
|
#Dev dependencies
|
|
serial_test = "3.1.1"
|
|
tempfile = "3"
|
|
stacker = "0.1.17"
|
|
libfuzzer-sys = "0.4"
|
|
test_bin = "0.4.0"
|
|
criterion = "0.4.0"
|
|
allocator-api2-tests = "0.2.15"
|
|
procspawn = { version = "1.0.1", features = ["test-support"] }
|
|
|
|
|
|
#Broker dependencies (might need cleanup or changes)
|
|
wireguard-uapi = { version = "3.0.0", features = ["xplatform"] }
|
|
command-fds = "0.2.3"
|
|
rustix = { version = "0.38.39", features = ["net", "fs"] }
|