mirror of
https://github.com/YGGverse/aquatic.git
synced 2026-03-31 17:55:36 +00:00
Don't unnecessarily constrain crate versions in Cargo.toml files
This commit is contained in:
parent
de52d35357
commit
028a366ce5
12 changed files with 32 additions and 32 deletions
|
|
@ -18,13 +18,13 @@ harness = false
|
|||
|
||||
[dependencies]
|
||||
anyhow = "1"
|
||||
hashbrown = { version = "0.11.2", features = ["serde"] }
|
||||
hashbrown = { version = "0.11", features = ["serde"] }
|
||||
serde = { version = "1", features = ["derive"] }
|
||||
serde_json = "1"
|
||||
simd-json = { version = "0.4.7", features = ["allow-non-simd"] }
|
||||
simd-json = { version = "0.4", features = ["allow-non-simd"] }
|
||||
tungstenite = "0.15"
|
||||
|
||||
[dev-dependencies]
|
||||
criterion = "0.3"
|
||||
quickcheck = "1.0"
|
||||
quickcheck_macros = "1.0"
|
||||
quickcheck = "1"
|
||||
quickcheck_macros = "1"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue