Cargo.toml: remove extra version constraint for zbus, tokio, and bindgen
The zbus and tokio dependencies have an API that shouldn't break without a major version change. Rely solely on the major version number to tell Cargo which package to use. For bindgen, macro version numbers should be omitted.
This commit is contained in:
parent
9ebd4ed7c5
commit
f2c3f01120
1 changed files with 3 additions and 3 deletions
|
|
@ -17,7 +17,7 @@ memmap2 = "0.9"
|
|||
polling = "3.7"
|
||||
reis = "0.4"
|
||||
rgb = "0.8"
|
||||
tokio = { version = "1.42", features = ["macros", "rt"] }
|
||||
tokio = { version = "1", features = ["macros", "rt"] }
|
||||
wayland-backend = "0.3"
|
||||
wayland-client = "0.31"
|
||||
wayland-protocols = { version = "0.32", features = ["client", "staging", "unstable"] }
|
||||
|
|
@ -25,10 +25,10 @@ wayland-protocols-wlr = { version = "0.3", features = ["client"] }
|
|||
wayland-scanner = "0.31"
|
||||
xkeysym = "0.2"
|
||||
yaml-rust2 = "0.9"
|
||||
zbus = { version = "5.1", default-features = false, features = ["tokio"] }
|
||||
zbus = { version = "5", default-features = false, features = ["tokio"] }
|
||||
|
||||
[build-dependencies]
|
||||
bindgen = "0.70.1"
|
||||
bindgen = "0.71"
|
||||
|
||||
[[bin]]
|
||||
name = "ufkbd-gnome"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue