-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Loose tiktoken-rs version requirements (#28)
* Loose tiktoken-rs version requirements * remove unused flag for update
- Loading branch information
Showing
6 changed files
with
41 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "text-splitter" | ||
version = "0.4.1" | ||
version = "0.4.2" | ||
authors = ["Ben Brandt <[email protected]>"] | ||
edition = "2021" | ||
description = "Split text into semantic chunks, up to a desired chunk size. Supports calculating length by characters and tokens (when used with large language models)." | ||
|
@@ -18,21 +18,21 @@ rustdoc-args = ["--cfg", "docsrs"] | |
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
|
||
[dependencies] | ||
auto_enums = "0.8.0" | ||
auto_enums = "0.8.1" | ||
either = "1.8.1" | ||
itertools = "0.10.5" | ||
once_cell = "1.17.2" | ||
regex = "1.8.3" | ||
tiktoken-rs = { version = "0.4.2", optional = true } | ||
tokenizers = { version = "0.13.3", default_features = false, features = [ | ||
itertools = "0.11.0" | ||
once_cell = "1.18.0" | ||
regex = "1.8.4" | ||
tiktoken-rs = { version = ">=0.2.0, <0.6.0", optional = true } | ||
tokenizers = { version = ">=0.13.3, <0.14.0", default_features = false, features = [ | ||
"onig", | ||
], optional = true } | ||
unicode-segmentation = "1.10.1" | ||
|
||
[dev-dependencies] | ||
fake = "2.6.1" | ||
insta = { version = "1.29.0", features = ["glob", "yaml"] } | ||
tokenizers = { version = "0.13.3", default-features = false, features = [ | ||
insta = { version = "1.30.0", features = ["glob", "yaml"] } | ||
tokenizers = { version = ">=0.13.3, <0.14.0", default-features = false, features = [ | ||
"onig", | ||
"http", | ||
] } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters