diff options
author | metamuffin <metamuffin@disroot.org> | 2024-09-20 23:21:14 +0200 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2024-09-20 23:21:14 +0200 |
commit | a4f89826bb745cd2c0a8c6a494085af482a0f0c3 (patch) | |
tree | db6f0a94d5b259c3f73e55cb057d23172bd415fc /server/Cargo.toml | |
parent | 7071dfe8259716375bb9f1373ea0b88a39102efa (diff) | |
download | hurrycurry-a4f89826bb745cd2c0a8c6a494085af482a0f0c3.tar hurrycurry-a4f89826bb745cd2c0a8c6a494085af482a0f0c3.tar.bz2 hurrycurry-a4f89826bb745cd2c0a8c6a494085af482a0f0c3.tar.zst |
fix cross compile of reqwest
Diffstat (limited to 'server/Cargo.toml')
-rw-r--r-- | server/Cargo.toml | 7 |
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" |