Files
ddidderr ccf30507ee chore(deps): update getrandom to 0.4.2
lanparty-client-core pulls getrandom from the workspace dependency set for
client identity generation. Bump the direct workspace dependency from 0.3.4 to
0.4.2 and refresh Cargo.lock so builds use the newer release for that direct
dependency.

Cargo still keeps older getrandom versions in the lockfile through transitive
dependencies, so this change does not try to force the whole graph onto one
major line. The added WASI and WIT packages are getrandom 0.4's normal target
support dependencies.

Test Plan:
- cargo clippy, cargo clippy --benches, and cargo clippy --tests before and
  after cargo +nightly fmt
- cargo fmt --check
- cargo test --workspace
- cargo clippy --workspace --all-targets -- -D warnings
- cargo build --release -p lanparty-relay -p lanparty-gateway
- git diff --check
- git diff --cached --check

Refs: none
2026-05-27 17:17:57 +02:00

35 lines
868 B
TOML

[workspace]
resolver = "3"
members = [
"crates/lanparty-client-core",
"crates/lanparty-client-route",
"crates/lanparty-client-tap",
"crates/lanparty-client-win",
"crates/lanparty-ctrl",
"crates/lanparty-gateway",
"crates/lanparty-net",
"crates/lanparty-obs",
"crates/lanparty-proto",
"crates/lanparty-relay",
]
[workspace.package]
version = "0.1.0"
edition = "2024"
[workspace.dependencies]
anyhow = "1"
bytes = "1"
clap = { version = "4.6.1", features = ["derive"] }
getrandom = "0.4.2"
libc = "0.2"
quinn = "0.11.9"
rcgen = "0.14.8"
rustls = { version = "0.23", default-features = false, features = ["ring", "std"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
thiserror = "2"
tokio = { version = "1.52.3", features = ["macros", "net", "rt-multi-thread", "signal", "sync", "time"] }
tracing = "0.1"
windows-sys = "0.61.2"