From c82750bb773b5306258fa2f94805c7619d5a874f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 22 Dec 2023 10:22:38 +0000 Subject: [PATCH] Bump tiktoken-rs from 0.5.7 to 0.5.8 in /bindings/python Bumps [tiktoken-rs](https://github.com/zurawiki/tiktoken-rs) from 0.5.7 to 0.5.8. - [Release notes](https://github.com/zurawiki/tiktoken-rs/releases) - [Commits](https://github.com/zurawiki/tiktoken-rs/compare/v0.5.7...v0.5.8) --- updated-dependencies: - dependency-name: tiktoken-rs dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- bindings/python/Cargo.lock | 12 ++++++------ bindings/python/Cargo.toml | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/bindings/python/Cargo.lock b/bindings/python/Cargo.lock index 1d7ae678..03644e06 100644 --- a/bindings/python/Cargo.lock +++ b/bindings/python/Cargo.lock @@ -13,9 +13,9 @@ dependencies = [ [[package]] name = "anyhow" -version = "1.0.75" +version = "1.0.76" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a4668cab20f66d8d020e1fbc0ebe47217433c1b6c8f2040faf858554e394ace6" +checksum = "59d2a3357dde987206219e78ecfbbb6e8dad06cbb65292758d3270e6254f7355" [[package]] name = "auto_enums" @@ -218,9 +218,9 @@ checksum = "d817e038c30374a4bcb22f94d0a8a0e216958d4c3dcde369b1439fec4bdda6e6" [[package]] name = "fancy-regex" -version = "0.11.0" +version = "0.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b95f7c0680e4142284cf8b22c14a476e87d61b004a3a0861872b32ef7ead40a2" +checksum = "7493d4c459da9f84325ad297371a6b2b8a162800873a22e3b6b6512e61d18c05" dependencies = [ "bit-set", "regex", @@ -783,9 +783,9 @@ dependencies = [ [[package]] name = "tiktoken-rs" -version = "0.5.7" +version = "0.5.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a4427b6b1c6b38215b92dd47a83a0ecc6735573d0a5a4c14acc0ac5b33b28adb" +checksum = "40894b788eb28bbb7e36bdc8b7b1b1488b9c93fa3730f315ab965330c94c0842" dependencies = [ "anyhow", "base64 0.21.5", diff --git a/bindings/python/Cargo.toml b/bindings/python/Cargo.toml index 2b96f2cb..65b8c9cd 100644 --- a/bindings/python/Cargo.toml +++ b/bindings/python/Cargo.toml @@ -16,7 +16,7 @@ crate-type = ["cdylib"] [dependencies] pyo3 = { version = "0.20.0", features = ["abi3-py37"] } text-splitter = { version = "0.4.5", features = ["tiktoken-rs", "tokenizers"] } -tiktoken-rs = "0.5.7" +tiktoken-rs = "0.5.8" tokenizers = { version = "0.15.0", default_features = false, features = [ "onig", ] }