Unify version string formats

https://doc.rust-lang.org/cargo/reference/specifying-dependencies.html#caret-requirements

"^1.2.3" is strictly equivalent to "1.2.3"

Signed-off-by: Maxime “pep” Buquet <pep@bouah.net>
This commit is contained in:
Maxime “pep” Buquet 2024-07-25 10:34:39 +02:00 committed by Jonas Schäfer
commit 11d40bac94
4 changed files with 9 additions and 9 deletions

View file

@ -11,7 +11,7 @@ license = "MPL-2.0"
[dependencies]
rxml = { version = "0.11.1", default-features = false }
minidom = { version = "^0.16" }
minidom = { version = "0.16" }
xso_proc = { version = "0.1", optional = true }
# optional dependencies to provide text conversion to/from types from/using
@ -20,9 +20,9 @@ xso_proc = { version = "0.1", optional = true }
# defaults to picking the highest matching version by default, the only
# sensible thing we can do here is to depend on the least version of the most
# recent semver of each crate.
jid = { version = "^0.11", optional = true }
uuid = { version = "^1", optional = true }
base64 = { version = "^0.22", optional = true }
jid = { version = "0.11", optional = true }
uuid = { version = "1", optional = true }
base64 = { version = "0.22", optional = true }
[features]
macros = [ "dep:xso_proc" ]