aboutsummaryrefslogtreecommitdiff
path: root/server/Cargo.toml
diff options
context:
space:
mode:
authormetamuffin <metamuffin@disroot.org>2025-10-10 18:06:37 +0200
committermetamuffin <metamuffin@disroot.org>2025-10-10 18:06:37 +0200
commit3fe8ba7f1b9fa7e38fa03f55fd898c8ca2a0e996 (patch)
treec3913fce710a879e2375c60a2b78e0cad483de18 /server/Cargo.toml
parentf78856e4cd4928c790748b883b7916585980b3dd (diff)
downloadhurrycurry-3fe8ba7f1b9fa7e38fa03f55fd898c8ca2a0e996.tar
hurrycurry-3fe8ba7f1b9fa7e38fa03f55fd898c8ca2a0e996.tar.bz2
hurrycurry-3fe8ba7f1b9fa7e38fa03f55fd898c8ca2a0e996.tar.zst
Update to newest rust; replace rand with std random
Diffstat (limited to 'server/Cargo.toml')
-rw-r--r--server/Cargo.toml5
1 files changed, 1 insertions, 4 deletions
diff --git a/server/Cargo.toml b/server/Cargo.toml
index f72cb7fa..57dcad6c 100644
--- a/server/Cargo.toml
+++ b/server/Cargo.toml
@@ -1,7 +1,7 @@
[package]
name = "hurrycurry-server"
version = "2.3.5"
-edition = "2021"
+edition = "2024"
default-run = "hurrycurry-server"
[dependencies]
@@ -13,13 +13,10 @@ tokio = { version = "1.47.1", features = ["full"] }
serde_json = "1.0.145"
tokio-tungstenite = "0.27.0"
futures-util = "0.3.31"
-rand = "0.9.2"
-rand_distr = "0.5.1"
shlex = "1.3.0"
clap = { version = "4.5.47", features = ["derive"] }
reqwest = { version = "0.12.23", optional = true, default-features = false, features = [
"json",
- "http2",
"charset",
"rustls-tls-native-roots",
] }