aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormetamuffin <metamuffin@disroot.org>2024-07-17 01:16:40 +0200
committermetamuffin <metamuffin@disroot.org>2024-07-17 01:16:40 +0200
commit6f30400073fdae990fdf4033fe184c6431491561 (patch)
treeddafe1c48f30d2f1abf7c6c5da371affb19efe6a
parent11d72719d743eff7364b99c31a752a5d644b73bd (diff)
downloadhurrycurry-6f30400073fdae990fdf4033fe184c6431491561.tar
hurrycurry-6f30400073fdae990fdf4033fe184c6431491561.tar.bz2
hurrycurry-6f30400073fdae990fdf4033fe184c6431491561.tar.zst
remove sdl2 features that are not required.
-rw-r--r--pixel-client/Cargo.toml2
-rw-r--r--pixel-client/tools/Cargo.toml2
2 files changed, 2 insertions, 2 deletions
diff --git a/pixel-client/Cargo.toml b/pixel-client/Cargo.toml
index 4ffec449..cc618857 100644
--- a/pixel-client/Cargo.toml
+++ b/pixel-client/Cargo.toml
@@ -4,7 +4,7 @@ version = "0.1.0"
edition = "2021"
[dependencies]
-sdl2 = { version = "0.37.0", features = ["image", "ttf"] }
+sdl2 = { version = "0.37.0", features = [] }
hurrycurry-protocol = { path = "../server/protocol" }
tungstenite = { version = "0.23.0", features = ["rustls-tls-native-roots"] }
serde_json = "1.0.120"
diff --git a/pixel-client/tools/Cargo.toml b/pixel-client/tools/Cargo.toml
index 3392352b..be7a3a9b 100644
--- a/pixel-client/tools/Cargo.toml
+++ b/pixel-client/tools/Cargo.toml
@@ -9,4 +9,4 @@ anyhow = "1.0.86"
log = "0.4.22"
env_logger = "0.11.3"
clap = { version = "4.5.9", features = ["derive"] }
-sdl2 = { version = "0.37.0", features = ["image", "ttf"] }
+sdl2 = { version = "0.37.0", features = ["image"] }