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:
parent
5fc12c45b5
commit
11d40bac94
4 changed files with 9 additions and 9 deletions
|
|
@ -24,7 +24,7 @@ chrono = { version = "0.4.5", default-features = false, features = ["std"] }
|
|||
# same repository dependencies
|
||||
jid = { version = "0.11", features = ["minidom"] }
|
||||
minidom = { version = "0.16" }
|
||||
xso = { version = "^0.1", features = ["macros", "minidom", "panicking-into-impl", "jid", "base64"] }
|
||||
xso = { version = "0.1", features = ["macros", "minidom", "panicking-into-impl", "jid", "base64"] }
|
||||
|
||||
[features]
|
||||
# Build xmpp-parsers to make components instead of clients.
|
||||
|
|
|
|||
Loading…
Reference in a new issue