Skip to content
This repository has been archived by the owner on Jul 15, 2024. It is now read-only.

Commit

Permalink
Fix Cargo.toml warnings
Browse files Browse the repository at this point in the history
warning: `default_features` is deprecated in favor of `default-features` and will not work in the 2024 edition
(in the `keyboard-types` dependency)
warning: `default_features` is deprecated in favor of `default-features` and will not work in the 2024 edition
(in the `raw-window-handle` dependency)
warning: `default_features` is deprecated in favor of `default-features` and will not work in the 2024 edition
(in the `wayland-backend` dependency)
  • Loading branch information
joshka committed Jun 29, 2024
1 parent 8d2a4b2 commit 9563748
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -51,11 +51,11 @@ lazy_static = "1.4.0"
cfg-if = "1.0.0"
instant = { version = "0.1.6", features = ["wasm-bindgen"] }
anyhow = "1.0.32"
keyboard-types = { version = "0.7", default_features = false }
keyboard-types = { version = "0.7", default-features = false }
memchr = "2.5"

# Optional dependencies
raw-window-handle = { version = "0.5.0", default_features = false }
raw-window-handle = { version = "0.5.0", default-features = false }
accesskit = { version = "0.12.0", optional = true }
once_cell = { version = "1", optional = true }

Expand Down Expand Up @@ -122,7 +122,7 @@ smithay-client-toolkit = { version = "0.17.0", optional = true, default-features
] }
# Wayland dependencies
# Needed for supporting RawWindowHandle
wayland-backend = { version = "0.1.0", default_features = false, features = [
wayland-backend = { version = "0.1.0", default-features = false, features = [
"client_system",
], optional = true }

Expand Down

0 comments on commit 9563748

Please sign in to comment.