Skip to content

Commit 0a4980d

Browse files
Update rand requirement from 0.9 to 0.10
Updates the requirements on [rand](https://github.com/rust-random/rand) to permit the latest version. - [Release notes](https://github.com/rust-random/rand/releases) - [Changelog](https://github.com/rust-random/rand/blob/master/CHANGELOG.md) - [Commits](rust-random/rand@rand_core-0.9.1...0.10.0) --- updated-dependencies: - dependency-name: rand dependency-version: 0.10.0 dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 49c1f0d commit 0a4980d

5 files changed

Lines changed: 6 additions & 6 deletions

File tree

crates/bpe/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ aneubeck-daachorse = "1.1.1"
2121
base64 = { version = "0.22", optional = true }
2222
fnv = "1.0"
2323
itertools = "0.14"
24-
rand = { version = "0.9", optional = true }
24+
rand = { version = "0.10", optional = true }
2525
serde = { version = "1", features = ["derive"] }
2626

2727
[dev-dependencies]

crates/bpe/benchmarks/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,6 @@ test = true
2121
bpe = { path = "../../bpe", features = ["rand", "tiktoken"] }
2222
bpe-openai = { path = "../../bpe-openai" }
2323
criterion = "0.8"
24-
rand = "0.9"
24+
rand = "0.10"
2525
tiktoken-rs = "0.9"
2626
tokenizers = { version = "0.22", features = ["http"] }

crates/bpe/tests/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@ edition = "2021"
66
bpe = { path = "../../bpe", features = ["rand"] }
77
bpe-openai = { path = "../../bpe-openai" }
88
itertools = "0.14"
9-
rand = "0.9"
9+
rand = "0.10"
1010
tiktoken-rs = "0.9"

crates/geo_filters/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ fnv = "1.0"
3030
hyperloglogplus = { version = "0.4", optional = true }
3131
itertools = "0.14"
3232
once_cell = "1.18"
33-
rand = { version = "0.9", optional = true }
33+
rand = { version = "0.10", optional = true }
3434
rayon = { version = "1.7", optional = true }
3535
regex = { version = "1", optional = true }
3636
serde = { version = "1.0", default-features = false, optional = true }
@@ -39,7 +39,7 @@ rand_chacha = { version = "0.9", optional = true }
3939
[dev-dependencies]
4040
criterion = "0.8"
4141
geo_filters = { path = ".", features = ["evaluation"] }
42-
rand = "0.9"
42+
rand = "0.10"
4343
rand_chacha = "0.9"
4444
rayon = "1.7"
4545

crates/string-offsets/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ wasm = ["wasm-bindgen"]
2020
wasm-bindgen = { version = "0.2", optional = true }
2121

2222
[dev-dependencies]
23-
rand = "0.9"
23+
rand = "0.10"
2424
rand_chacha = "0.9"
2525
criterion = "0.8"
2626

0 commit comments

Comments
 (0)