Next Generation WASM Microkernel Operating System

chore(deps): update rust crate criterion to 0.7.0 (#508)

authored by

renovate[bot] and committed by
GitHub
683daf6c 518e12f5

+10 -19
+7 -16
Cargo.lock
··· 402 402 403 403 [[package]] 404 404 name = "criterion" 405 - version = "0.6.0" 405 + version = "0.7.0" 406 406 source = "registry+https://github.com/rust-lang/crates.io-index" 407 - checksum = "3bf7af66b0989381bd0be551bd7cc91912a655a58c6918420c9527b1fd8b4679" 407 + checksum = "e1c047a62b0cc3e145fa84415a3191f628e980b194c2755aa12300a4e6cbd928" 408 408 dependencies = [ 409 409 "anes", 410 410 "cast", 411 411 "ciborium", 412 412 "clap", 413 413 "criterion-plot", 414 - "itertools 0.13.0", 414 + "itertools", 415 415 "num-traits", 416 416 "oorandom", 417 417 "plotters", ··· 425 425 426 426 [[package]] 427 427 name = "criterion-plot" 428 - version = "0.5.0" 428 + version = "0.6.0" 429 429 source = "registry+https://github.com/rust-lang/crates.io-index" 430 - checksum = "6b50826342786a51a89e2da3a28f1c32b06e387201bc2d19791f622c673706b1" 430 + checksum = "9b1bcc0dc7dfae599d84ad0b1a55f80cde8af3725da8313b528da95ef783e338" 431 431 dependencies = [ 432 432 "cast", 433 - "itertools 0.10.5", 433 + "itertools", 434 434 ] 435 435 436 436 [[package]] ··· 896 896 version = "1.70.1" 897 897 source = "registry+https://github.com/rust-lang/crates.io-index" 898 898 checksum = "7943c866cc5cd64cbc25b2e01621d07fa8eb2a1a23160ee81ce38704e97b8ecf" 899 - 900 - [[package]] 901 - name = "itertools" 902 - version = "0.10.5" 903 - source = "registry+https://github.com/rust-lang/crates.io-index" 904 - checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473" 905 - dependencies = [ 906 - "either", 907 - ] 908 899 909 900 [[package]] 910 901 name = "itertools" ··· 2435 2426 source = "registry+https://github.com/rust-lang/crates.io-index" 2436 2427 checksum = "cf221c93e13a30d793f7645a0e7762c55d169dbb0a49671918a2319d289b10bb" 2437 2428 dependencies = [ 2438 - "windows-sys 0.52.0", 2429 + "windows-sys 0.59.0", 2439 2430 ] 2440 2431 2441 2432 [[package]]
+1 -1
Cargo.toml
··· 119 119 tracing-core = { version = "0.2", git = "https://github.com/tokio-rs/tracing", branch = "master", default-features = false } 120 120 anyhow = { version = "1.0.98", default-features = false } 121 121 loom = "0.7" 122 - criterion = "0.6.0" 122 + criterion = "0.7.0" 123 123 lazy_static = "1.5.0" 124 124 cordyceps = "0.3.4" 125 125 futures = { version = "0.3.31", default-features = false }
+1 -1
libs/fastrand/Cargo.toml
··· 8 8 [dependencies] 9 9 10 10 [dev-dependencies] 11 - criterion = "0.6.0" 11 + criterion = "0.7.0" 12 12 13 13 [[bench]] 14 14 name = "bench"
+1 -1
libs/wavltree/Cargo.toml
··· 12 12 13 13 [target.'cfg(not(target_os = "none"))'.dev-dependencies] 14 14 rand= { workspace = true, features = ["thread_rng"] } 15 - criterion = "0.6.0" 15 + criterion = "0.7.0" 16 16 17 17 [features] 18 18 dot = []