Skip to content

Commit 0d1d52a

Browse files
Update rand requirement from 0.8 to 0.9
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@0.8.0...0.9.0) --- updated-dependencies: - dependency-name: rand dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 4b41c26 commit 0d1d52a

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

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.8", optional = true }
24+
rand = { version = "0.9", 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" }
2222
bpe-openai = { path = "../../bpe-openai" }
2323
criterion = "0.5"
24-
rand = "0.8"
24+
rand = "0.9"
2525
tiktoken-rs = "0.6"
2626
tokenizers = { version = "0.21", 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.8"
9+
rand = "0.9"
1010
tiktoken-rs = "0.6"

crates/geo_filters/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,14 +28,14 @@ fnv = "1.0"
2828
hyperloglogplus = { version = "0.4", optional = true }
2929
itertools = "0.14"
3030
once_cell = "1.18"
31-
rand = { version = "0.8", optional = true }
31+
rand = { version = "0.9", optional = true }
3232
rayon = { version = "1.7", optional = true }
3333
regex = { version = "1", optional = true }
3434

3535
[dev-dependencies]
3636
criterion = "0.5"
3737
geo_filters = { path = ".", features = ["evaluation"] }
38-
rand = "0.8"
38+
rand = "0.9"
3939
rand_chacha = "0.3"
4040
rayon = "1.7"
4141

crates/string-offsets/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,5 @@ keywords = ["unicode", "positions", "utf16", "characters", "lines"]
1010
categories = ["algorithms", "data-structures", "text-processing", "development-tools::ffi"]
1111

1212
[dev-dependencies]
13-
rand = "0.8"
13+
rand = "0.9"
1414
rand_chacha = "0.3"

0 commit comments

Comments
 (0)