Cargo.toml: Change accepted version-range to SemVer-compatible versions

instead of updating only to newer bugfix-releases with `x.y.*`, or
newer major versions with `>=`.

For more information about how Cargo handles this, read:
https://doc.rust-lang.org/cargo/reference/resolver.html#semver-compatibility

Part-of: <https://gitlab.gnome.org/World/Phosh/squeekboard/-/merge_requests/676>
This commit is contained in:
MoonlightWave-12
2024-09-15 10:51:13 +02:00
committed by Marge Bot
parent 2668827ed9
commit 9b9a95c6d2

View File

@ -26,14 +26,14 @@ zbus_v1_5 = []
clap_v4 = []
[dependencies]
maplit = "1.0.*"
serde = { version = "1.0.*", features = ["derive"] }
maplit = "1.0"
serde = { version = "1.0", features = ["derive"] }
serde_yaml = "0.9"
bitflags = "1.3.*"
clap = { version = ">=4.4", features=["std"], default-features = false }
zbus = "1.9.*"
zvariant = "2.10.*"
zvariant_derive = "2.10.*"
bitflags = "1.3"
clap = { version = "4.4", features=["std"], default-features = false }
zbus = "1.9"
zvariant = "2.10"
zvariant_derive = "2.10"
xkbcommon = { version = "0.7", features = ["wayland"] }
[dependencies.cairo-rs]