Skip to content

Commit 0aec5ff

Browse files
committed
test-float-parse: Upgrade dependencies
1 parent 7057231 commit 0aec5ff

4 files changed

Lines changed: 226 additions & 15 deletions

File tree

Cargo.lock

Lines changed: 220 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ checksum = "b169f7a6d4742236a0a00c541b845991d0ac43e546831af1249753ab4c3aa3a0"
2525
dependencies = [
2626
"cfg-if",
2727
"cipher",
28-
"cpufeatures",
28+
"cpufeatures 0.2.17",
2929
]
3030

3131
[[package]]
@@ -546,6 +546,17 @@ version = "0.2.1"
546546
source = "registry+https://github.com/rust-lang/crates.io-index"
547547
checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
548548

549+
[[package]]
550+
name = "chacha20"
551+
version = "0.10.0"
552+
source = "registry+https://github.com/rust-lang/crates.io-index"
553+
checksum = "6f8d983286843e49675a4b7a2d174efe136dc93a18d69130dd18198a6c167601"
554+
dependencies = [
555+
"cfg-if",
556+
"cpufeatures 0.3.0",
557+
"rand_core 0.10.0",
558+
]
559+
549560
[[package]]
550561
name = "chrono"
551562
version = "0.4.42"
@@ -907,6 +918,15 @@ dependencies = [
907918
"libc",
908919
]
909920

921+
[[package]]
922+
name = "cpufeatures"
923+
version = "0.3.0"
924+
source = "registry+https://github.com/rust-lang/crates.io-index"
925+
checksum = "8b2a41393f66f16b0823bb79094d54ac5fbd34ab292ddafb9a0456ac9f87d201"
926+
dependencies = [
927+
"libc",
928+
]
929+
910930
[[package]]
911931
name = "crc32fast"
912932
version = "1.5.0"
@@ -1591,6 +1611,20 @@ dependencies = [
15911611
"wasi 0.14.2+wasi-0.2.4",
15921612
]
15931613

1614+
[[package]]
1615+
name = "getrandom"
1616+
version = "0.4.1"
1617+
source = "registry+https://github.com/rust-lang/crates.io-index"
1618+
checksum = "139ef39800118c7683f2fd3c98c1b23c09ae076556b435f8e9064ae108aaeeec"
1619+
dependencies = [
1620+
"cfg-if",
1621+
"libc",
1622+
"r-efi",
1623+
"rand_core 0.10.0",
1624+
"wasip2",
1625+
"wasip3",
1626+
]
1627+
15941628
[[package]]
15951629
name = "gimli"
15961630
version = "0.31.1"
@@ -3053,6 +3087,16 @@ dependencies = [
30533087
"owo-colors",
30543088
]
30553089

3090+
[[package]]
3091+
name = "prettyplease"
3092+
version = "0.2.37"
3093+
source = "registry+https://github.com/rust-lang/crates.io-index"
3094+
checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
3095+
dependencies = [
3096+
"proc-macro2",
3097+
"syn 2.0.110",
3098+
]
3099+
30563100
[[package]]
30573101
name = "proc-macro-hack"
30583102
version = "0.5.20+deprecated"
@@ -3143,6 +3187,17 @@ dependencies = [
31433187
"rand_core 0.9.3",
31443188
]
31453189

3190+
[[package]]
3191+
name = "rand"
3192+
version = "0.10.0"
3193+
source = "registry+https://github.com/rust-lang/crates.io-index"
3194+
checksum = "bc266eb313df6c5c09c1c7b1fbe2510961e5bcd3add930c1e31f7ed9da0feff8"
3195+
dependencies = [
3196+
"chacha20",
3197+
"getrandom 0.4.1",
3198+
"rand_core 0.10.0",
3199+
]
3200+
31463201
[[package]]
31473202
name = "rand_chacha"
31483203
version = "0.3.1"
@@ -3163,6 +3218,16 @@ dependencies = [
31633218
"rand_core 0.9.3",
31643219
]
31653220

3221+
[[package]]
3222+
name = "rand_chacha"
3223+
version = "0.10.0"
3224+
source = "registry+https://github.com/rust-lang/crates.io-index"
3225+
checksum = "3e6af7f3e25ded52c41df4e0b1af2d047e45896c2f3281792ed68a1c243daedb"
3226+
dependencies = [
3227+
"ppv-lite86",
3228+
"rand_core 0.10.0",
3229+
]
3230+
31663231
[[package]]
31673232
name = "rand_core"
31683233
version = "0.6.4"
@@ -3181,6 +3246,12 @@ dependencies = [
31813246
"getrandom 0.3.3",
31823247
]
31833248

3249+
[[package]]
3250+
name = "rand_core"
3251+
version = "0.10.0"
3252+
source = "registry+https://github.com/rust-lang/crates.io-index"
3253+
checksum = "0c8d0fd677905edcbeedbf2edb6494d676f0e98d54d5cf9bda0b061cb8fb8aba"
3254+
31843255
[[package]]
31853256
name = "rand_xorshift"
31863257
version = "0.4.0"
@@ -5153,7 +5224,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
51535224
checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba"
51545225
dependencies = [
51555226
"cfg-if",
5156-
"cpufeatures",
5227+
"cpufeatures 0.2.17",
51575228
"digest",
51585229
]
51595230

@@ -5164,7 +5235,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
51645235
checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
51655236
dependencies = [
51665237
"cfg-if",
5167-
"cpufeatures",
5238+
"cpufeatures 0.2.17",
51685239
"digest",
51695240
]
51705241

@@ -5473,8 +5544,8 @@ version = "0.1.0"
54735544
dependencies = [
54745545
"indicatif",
54755546
"num",
5476-
"rand 0.9.2",
5477-
"rand_chacha 0.9.0",
5547+
"rand 0.10.0",
5548+
"rand_chacha 0.10.0",
54785549
"rayon",
54795550
]
54805551

@@ -6130,6 +6201,24 @@ version = "40.0.0"
61306201
source = "registry+https://github.com/rust-lang/crates.io-index"
61316202
checksum = "bb5e2b9858989c3a257de4ca169977f4f79897b64e4f482f188f4fcf8ac557d1"
61326203

6204+
[[package]]
6205+
name = "wasip2"
6206+
version = "1.0.2+wasi-0.2.9"
6207+
source = "registry+https://github.com/rust-lang/crates.io-index"
6208+
checksum = "9517f9239f02c069db75e65f174b3da828fe5f5b945c4dd26bd25d89c03ebcf5"
6209+
dependencies = [
6210+
"wit-bindgen",
6211+
]
6212+
6213+
[[package]]
6214+
name = "wasip3"
6215+
version = "0.4.0+wasi-0.3.0-rc-2026-01-06"
6216+
source = "registry+https://github.com/rust-lang/crates.io-index"
6217+
checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5"
6218+
dependencies = [
6219+
"wit-bindgen",
6220+
]
6221+
61336222
[[package]]
61346223
name = "wasm-bindgen"
61356224
version = "0.2.105"
@@ -6192,8 +6281,8 @@ dependencies = [
61926281
"wat",
61936282
"windows-sys 0.61.2",
61946283
"winsplit",
6195-
"wit-component",
6196-
"wit-parser",
6284+
"wit-component 0.243.0",
6285+
"wit-parser 0.243.0",
61976286
]
61986287

61996288
[[package]]
@@ -6223,6 +6312,16 @@ dependencies = [
62236312
"wasmparser 0.243.0",
62246313
]
62256314

6315+
[[package]]
6316+
name = "wasm-encoder"
6317+
version = "0.244.0"
6318+
source = "registry+https://github.com/rust-lang/crates.io-index"
6319+
checksum = "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319"
6320+
dependencies = [
6321+
"leb128fmt",
6322+
"wasmparser 0.244.0",
6323+
]
6324+
62266325
[[package]]
62276326
name = "wasm-metadata"
62286327
version = "0.243.0"
@@ -6235,6 +6334,18 @@ dependencies = [
62356334
"wasmparser 0.243.0",
62366335
]
62376336

6337+
[[package]]
6338+
name = "wasm-metadata"
6339+
version = "0.244.0"
6340+
source = "registry+https://github.com/rust-lang/crates.io-index"
6341+
checksum = "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909"
6342+
dependencies = [
6343+
"anyhow",
6344+
"indexmap",
6345+
"wasm-encoder 0.244.0",
6346+
"wasmparser 0.244.0",
6347+
]
6348+
62386349
[[package]]
62396350
name = "wasmparser"
62406351
version = "0.219.2"
@@ -6268,6 +6379,18 @@ dependencies = [
62686379
"serde",
62696380
]
62706381

6382+
[[package]]
6383+
name = "wasmparser"
6384+
version = "0.244.0"
6385+
source = "registry+https://github.com/rust-lang/crates.io-index"
6386+
checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe"
6387+
dependencies = [
6388+
"bitflags",
6389+
"hashbrown 0.15.5",
6390+
"indexmap",
6391+
"semver",
6392+
]
6393+
62716394
[[package]]
62726395
name = "wast"
62736396
version = "243.0.0"
@@ -6721,6 +6844,26 @@ version = "0.1.0"
67216844
source = "registry+https://github.com/rust-lang/crates.io-index"
67226845
checksum = "3ab703352da6a72f35c39a533526393725640575bb211f61987a2748323ad956"
67236846

6847+
[[package]]
6848+
name = "wit-bindgen"
6849+
version = "0.51.0"
6850+
source = "registry+https://github.com/rust-lang/crates.io-index"
6851+
checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
6852+
dependencies = [
6853+
"wit-bindgen-rust-macro",
6854+
]
6855+
6856+
[[package]]
6857+
name = "wit-bindgen-core"
6858+
version = "0.51.0"
6859+
source = "registry+https://github.com/rust-lang/crates.io-index"
6860+
checksum = "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc"
6861+
dependencies = [
6862+
"anyhow",
6863+
"heck 0.5.0",
6864+
"wit-parser 0.244.0",
6865+
]
6866+
67246867
[[package]]
67256868
name = "wit-bindgen-rt"
67266869
version = "0.39.0"
@@ -6730,6 +6873,37 @@ dependencies = [
67306873
"bitflags",
67316874
]
67326875

6876+
[[package]]
6877+
name = "wit-bindgen-rust"
6878+
version = "0.51.0"
6879+
source = "registry+https://github.com/rust-lang/crates.io-index"
6880+
checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21"
6881+
dependencies = [
6882+
"anyhow",
6883+
"heck 0.5.0",
6884+
"indexmap",
6885+
"prettyplease",
6886+
"syn 2.0.110",
6887+
"wasm-metadata 0.244.0",
6888+
"wit-bindgen-core",
6889+
"wit-component 0.244.0",
6890+
]
6891+
6892+
[[package]]
6893+
name = "wit-bindgen-rust-macro"
6894+
version = "0.51.0"
6895+
source = "registry+https://github.com/rust-lang/crates.io-index"
6896+
checksum = "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a"
6897+
dependencies = [
6898+
"anyhow",
6899+
"prettyplease",
6900+
"proc-macro2",
6901+
"quote",
6902+
"syn 2.0.110",
6903+
"wit-bindgen-core",
6904+
"wit-bindgen-rust",
6905+
]
6906+
67336907
[[package]]
67346908
name = "wit-component"
67356909
version = "0.243.0"
@@ -6744,9 +6918,28 @@ dependencies = [
67446918
"serde_derive",
67456919
"serde_json",
67466920
"wasm-encoder 0.243.0",
6747-
"wasm-metadata",
6921+
"wasm-metadata 0.243.0",
67486922
"wasmparser 0.243.0",
6749-
"wit-parser",
6923+
"wit-parser 0.243.0",
6924+
]
6925+
6926+
[[package]]
6927+
name = "wit-component"
6928+
version = "0.244.0"
6929+
source = "registry+https://github.com/rust-lang/crates.io-index"
6930+
checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2"
6931+
dependencies = [
6932+
"anyhow",
6933+
"bitflags",
6934+
"indexmap",
6935+
"log",
6936+
"serde",
6937+
"serde_derive",
6938+
"serde_json",
6939+
"wasm-encoder 0.244.0",
6940+
"wasm-metadata 0.244.0",
6941+
"wasmparser 0.244.0",
6942+
"wit-parser 0.244.0",
67506943
]
67516944

67526945
[[package]]
@@ -6767,6 +6960,24 @@ dependencies = [
67676960
"wasmparser 0.243.0",
67686961
]
67696962

6963+
[[package]]
6964+
name = "wit-parser"
6965+
version = "0.244.0"
6966+
source = "registry+https://github.com/rust-lang/crates.io-index"
6967+
checksum = "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736"
6968+
dependencies = [
6969+
"anyhow",
6970+
"id-arena",
6971+
"indexmap",
6972+
"log",
6973+
"semver",
6974+
"serde",
6975+
"serde_derive",
6976+
"serde_json",
6977+
"unicode-xid",
6978+
"wasmparser 0.244.0",
6979+
]
6980+
67706981
[[package]]
67716982
name = "writeable"
67726983
version = "0.6.2"

src/tools/test-float-parse/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@ edition = "2024"
55
publish = false
66

77
[dependencies]
8-
indicatif = { version = "0.17.8", default-features = false }
8+
indicatif = { version = "0.17.11", default-features = false }
99
num = "0.4.3"
10-
rand = "0.9.0"
11-
rand_chacha = "0.9.0"
12-
rayon = "1"
10+
rand = "0.10.0"
11+
rand_chacha = "0.10.0"
12+
rayon = "1.11.0"
1313

1414
[lib]
1515
name = "test_float_parse"

src/tools/test-float-parse/src/gen_/fuzz.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ use std::marker::PhantomData;
55
use std::ops::Range;
66
use std::sync::Mutex;
77

8-
use rand::Rng;
8+
use rand::RngExt;
99
use rand::distr::{Distribution, StandardUniform};
1010
use rand_chacha::ChaCha8Rng;
1111
use rand_chacha::rand_core::SeedableRng;

0 commit comments

Comments
 (0)