diff options
-rw-r--r-- | pixel-client/Cargo.toml | 2 | ||||
-rw-r--r-- | pixel-client/tools/Cargo.toml | 2 |
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"] } |