Skip to content

Commit 6aee09f

Browse files
Update tiktoken-rs requirement from 0.9 to 0.11
Updates the requirements on [tiktoken-rs](https://github.com/zurawiki/tiktoken-rs) to permit the latest version. - [Release notes](https://github.com/zurawiki/tiktoken-rs/releases) - [Commits](zurawiki/tiktoken-rs@v0.9.1...v0.11.0) --- updated-dependencies: - dependency-name: tiktoken-rs dependency-version: 0.11.0 dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 15a20e9 commit 6aee09f

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

crates/bpe-openai/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ unicode-normalization = "0.1"
2121

2222
[dev-dependencies]
2323
bpe = { version = "0.2", path = "../bpe", features = ["rand"] }
24-
tiktoken-rs = "0.9"
24+
tiktoken-rs = "0.11"
2525

2626
[build-dependencies]
2727
base64 = "0.22"

crates/bpe/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ serde = { version = "1", features = ["derive"] }
2626

2727
[dev-dependencies]
2828
bpe = { path = "." }
29-
tiktoken-rs = "0.9"
29+
tiktoken-rs = "0.11"
3030

3131
[package.metadata.docs.rs]
3232
all-features = true

crates/bpe/benchmarks/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,5 +22,5 @@ bpe = { path = "../../bpe", features = ["rand", "tiktoken"] }
2222
bpe-openai = { path = "../../bpe-openai" }
2323
criterion = "0.8"
2424
rand = "0.10"
25-
tiktoken-rs = "0.9"
25+
tiktoken-rs = "0.11"
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
@@ -7,4 +7,4 @@ bpe = { path = "../../bpe", features = ["rand"] }
77
bpe-openai = { path = "../../bpe-openai" }
88
itertools = "0.14"
99
rand = "0.10"
10-
tiktoken-rs = "0.9"
10+
tiktoken-rs = "0.11"

0 commit comments

Comments
 (0)