summaryrefslogtreecommitdiff
path: root/server
diff options
context:
space:
mode:
authormetamuffin <metamuffin@disroot.org>2024-09-20 23:21:14 +0200
committermetamuffin <metamuffin@disroot.org>2024-09-20 23:21:14 +0200
commita4f89826bb745cd2c0a8c6a494085af482a0f0c3 (patch)
treedb6f0a94d5b259c3f73e55cb057d23172bd415fc /server
parent7071dfe8259716375bb9f1373ea0b88a39102efa (diff)
downloadhurrycurry-a4f89826bb745cd2c0a8c6a494085af482a0f0c3.tar
hurrycurry-a4f89826bb745cd2c0a8c6a494085af482a0f0c3.tar.bz2
hurrycurry-a4f89826bb745cd2c0a8c6a494085af482a0f0c3.tar.zst
fix cross compile of reqwest
Diffstat (limited to 'server')
-rw-r--r--server/Cargo.toml7
1 files changed, 6 insertions, 1 deletions
diff --git a/server/Cargo.toml b/server/Cargo.toml
index 04b2fd8b..520e3d24 100644
--- a/server/Cargo.toml
+++ b/server/Cargo.toml
@@ -17,7 +17,12 @@ serde_yml = "0.0.11"
rand = "0.9.0-alpha.2"
shlex = "1.3.0"
clap = { version = "4.5.15", features = ["derive"] }
-reqwest = { version = "0.12.7", features = ["json"] }
+reqwest = { version = "0.12.7", default-features = false, features = [
+ "json",
+ "http2",
+ "charset",
+ "rustls-tls-native-roots",
+] }
pollster = "0.3.0"
bincode = "2.0.0-rc.3"
xdg = "2.5.2"