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
|
|
@ -20,7 +20,7 @@ tokio-stream = { version = "0.1", features = [] }
|
|||
tokio-util = { version = "0.7", features = ["codec"] }
|
||||
webpki-roots = { version = "0.25", optional = true }
|
||||
rxml = { version = "0.11.1", features = ["compact_str"] }
|
||||
rand = "^0.8"
|
||||
rand = "0.8"
|
||||
syntect = { version = "5", optional = true }
|
||||
# same repository dependencies
|
||||
sasl = { version = "0.5" }
|
||||
|
|
|
|||
Loading…
Reference in a new issue