Update Cargo.lock.msrv again

This commit is contained in:
Diggory Hardy 2024-04-27 09:17:29 +01:00
parent 75a233b02a
commit 6389320091
2 changed files with 21 additions and 12 deletions

View File

@ -61,6 +61,18 @@ version = "0.21.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567"
[[package]]
name = "benches"
version = "0.1.0"
dependencies = [
"criterion",
"criterion-cycles-per-byte",
"rand",
"rand_chacha",
"rand_distr",
"rand_pcg",
]
[[package]]
name = "bincode"
version = "1.3.3"
@ -191,6 +203,15 @@ dependencies = [
"walkdir",
]
[[package]]
name = "criterion-cycles-per-byte"
version = "0.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5281161544b8f2397e14942c2045efa3446470348121a65c37263f8e76c1e2ff"
dependencies = [
"criterion",
]
[[package]]
name = "criterion-plot"
version = "0.5.0"
@ -579,21 +600,10 @@ dependencies = [
"rand_core",
"rand_pcg",
"rayon",
"rayon-core",
"serde",
"zerocopy",
]
[[package]]
name = "rand_benches"
version = "0.1.0"
dependencies = [
"criterion",
"rand",
"rand_chacha",
"rand_pcg",
]
[[package]]
name = "rand_chacha"
version = "0.9.0-alpha.1"

View File

@ -77,4 +77,3 @@ rand_pcg = { path = "rand_pcg", version = "=0.9.0-alpha.1" }
# Only to test serde1
bincode = "1.2.1"
rayon = "1.7"
rayon-core = "1.11"