diff options
| author | metamuffin <metamuffin@disroot.org> | 2025-10-10 18:06:37 +0200 |
|---|---|---|
| committer | metamuffin <metamuffin@disroot.org> | 2025-10-10 18:06:37 +0200 |
| commit | 3fe8ba7f1b9fa7e38fa03f55fd898c8ca2a0e996 (patch) | |
| tree | c3913fce710a879e2375c60a2b78e0cad483de18 /server/replaytool/Cargo.toml | |
| parent | f78856e4cd4928c790748b883b7916585980b3dd (diff) | |
| download | hurrycurry-3fe8ba7f1b9fa7e38fa03f55fd898c8ca2a0e996.tar hurrycurry-3fe8ba7f1b9fa7e38fa03f55fd898c8ca2a0e996.tar.bz2 hurrycurry-3fe8ba7f1b9fa7e38fa03f55fd898c8ca2a0e996.tar.zst | |
Update to newest rust; replace rand with std random
Diffstat (limited to 'server/replaytool/Cargo.toml')
| -rw-r--r-- | server/replaytool/Cargo.toml | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/server/replaytool/Cargo.toml b/server/replaytool/Cargo.toml index cfc50b3a..cc13b4a9 100644 --- a/server/replaytool/Cargo.toml +++ b/server/replaytool/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "hurrycurry-replaytool" version = "0.1.0" -edition = "2021" +edition = "2024" [dependencies] log = "0.4.28" @@ -14,7 +14,6 @@ tokio-tungstenite = { version = "0.27.0", features = [ "rustls-tls-native-roots", ] } futures-util = "0.3.31" -rand = "0.9.2" clap = { version = "4.5.47", features = ["derive"] } async-compression = { version = "0.4.30", features = ["zstd", "tokio"] } rustls = { version = "0.23.31", features = ["ring"] } |