Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions bindings/node/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion bindings/node/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
authors = ["Nicolas Patry <nicolas@huggingface.co>"]
edition = "2024"
name = "node"
version = "1.0.0-dev.0"
version = "1.0.0-rc.2"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

Expand Down
2 changes: 1 addition & 1 deletion bindings/node/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "tokenizers",
"version": "1.0.0-dev.0",
"version": "1.0.0-rc.2",
"repository": {
"type": "git",
"url": "git+https://github.com/huggingface/tokenizers.git"
Expand Down
10 changes: 5 additions & 5 deletions bindings/python/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion bindings/python/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tokenizers-python"
version = "1.0.0-dev.0"
version = "1.0.0-rc.2"
edition = "2024"
publish = false
authors = [
Expand Down
10 changes: 5 additions & 5 deletions tokenizers/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions tokenizers/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ authors = [
]
edition = "2024"
name = "tokenizers"
version = "1.0.0-dev.0"
version = "1.0.0-rc.2"
homepage = "https://github.com/huggingface/tokenizers"
repository = "https://github.com/huggingface/tokenizers"
documentation = "https://docs.rs/tokenizers/"
Expand Down Expand Up @@ -41,7 +41,7 @@ path = "src/lib.rs"
bench = false

[dependencies]
tk-encode = { path = "tk-encode", version = "0.1.0-dev.0", default-features = false, features = [
tk-encode = { path = "tk-encode", version = "0.1.0-rc.2", default-features = false, features = [
"parallelism",
"normalizers",
"bpe",
Expand All @@ -50,10 +50,10 @@ tk-encode = { path = "tk-encode", version = "0.1.0-dev.0", default-features = fa
"wordlevel",
"unicode-scripts",
] }
tk-convert = { path = "tk-convert", version = "0.1.0-dev.0", default-features = false }
tk-convert = { path = "tk-convert", version = "0.1.0-rc.2", default-features = false }
# The reader and the writer. Same component features as `tk-encode` above: the reader has one match
# arm per component, so a component compiled out of the runtime cannot be read into it either.
tk-serialize = { path = "tk-serialize", version = "0.1.0-dev.0", default-features = false, features = [
tk-serialize = { path = "tk-serialize", version = "0.1.0-rc.2", default-features = false, features = [
"deserialize",
"serialize",
"parallelism",
Expand Down
2 changes: 1 addition & 1 deletion tokenizers/bitcannon/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bitcannon"
version = "0.1.0-dev.0"
version = "0.1.0-rc.2"
edition = "2024"
rust-version = "1.89" # AVX-512 VBMI intrinsics (simd_avx_classify) are stable only since 1.89
authors = [
Expand Down
4 changes: 2 additions & 2 deletions tokenizers/tk-convert/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tk-convert"
version = "0.1.0-dev.0"
version = "0.1.0-rc.2"
edition = "2024"
authors = [
"Arthur Zucker <arthur@huggingface.co>",
Expand Down Expand Up @@ -31,7 +31,7 @@ thiserror = "2"
# The GPT-2 pattern a `ByteLevel` lowers to. `bitcannon::regexes` is the single source of truth for
# it -- tk-encode's runtime recognizer reads the same const -- so a copy here could drift and cost
# the FSM fast path without changing any test.
bitcannon = { path = "../bitcannon", version = "0.1.0-dev.0" }
bitcannon = { path = "../bitcannon", version = "0.1.0-rc.2" }

# Latest released tokenizers, the independent id/decode oracle `tests/oracle.rs` compares against.
tokenizers-release = { package = "tokenizers", version = "=0.23.2", optional = true }
Expand Down
4 changes: 2 additions & 2 deletions tokenizers/tk-encode/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tk-encode"
version = "0.1.0-dev.0"
version = "0.1.0-rc.2"
edition = "2024"
authors = [
"Anthony MOI <m.anthony.moi@gmail.com>",
Expand Down Expand Up @@ -29,7 +29,7 @@ path = "src/lib.rs"

[dependencies]
############ Required dependencies ###############################
bitcannon = { path = "../bitcannon", version = "0.1.0-dev.0" }
bitcannon = { path = "../bitcannon", version = "0.1.0-rc.2" }
rand = "0.10"
ptr_hash = { version = "2.0.2", default-features = false }
unicode_categories = "0.1"
Expand Down
6 changes: 3 additions & 3 deletions tokenizers/tk-serialize/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tk-serialize"
version = "0.1.0-dev.0"
version = "0.1.0-rc.2"
edition = "2024"
authors = [
"Arthur Zucker <arthur@huggingface.co>",
Expand Down Expand Up @@ -38,10 +38,10 @@ hifijson = "0.5.0"
base64 = "0.22"
# The runtime this crate builds. No `config`: the whole point is that reading a canonical
# `tokenizer.json` needs no serde layer at all.
tk-encode = { path = "../tk-encode", version = "0.1.0-dev.0", default-features = false }
tk-encode = { path = "../tk-encode", version = "0.1.0-rc.2", default-features = false }
# The GPT-2 pre-tokenizer pattern is a constant in `bitcannon`, and a `ByteLevel` pre-tokenizer is
# spelled as a `Split` on it. Nothing else here reaches the FSM crate directly.
bitcannon = { path = "../bitcannon", version = "0.1.0-dev.0" }
bitcannon = { path = "../bitcannon", version = "0.1.0-rc.2" }

[features]
# Reading a canonical `tokenizer.json` into a `PipelineTokenizer`. On by default -- it is what the
Expand Down
6 changes: 3 additions & 3 deletions tokenizers/tk-train/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tk-train"
version = "0.1.0-dev.0"
version = "0.1.0-rc.2"
edition = "2024"
authors = [
"Arthur Zucker <arthur@huggingface.co",
Expand All @@ -25,7 +25,7 @@ path = "src/lib.rs"
# Every trainer needs its model, and the training extension goes through `Tokenizer`, so the
# training half wants the full inference surface -- `tk-encode`'s slim defaults are for consumers
# that only encode.
tk-encode = { path = "../tk-encode", version = "0.1.0-dev.0", default-features = false, features = [
tk-encode = { path = "../tk-encode", version = "0.1.0-rc.2", default-features = false, features = [
"parallelism",
"normalizers",
"bpe",
Expand All @@ -34,7 +34,7 @@ tk-encode = { path = "../tk-encode", version = "0.1.0-dev.0", default-features =
"wordlevel",
] }
# `ModelWrapper`, `TokenizerImpl` and `AddedToken` live in the config layer.
tk-convert = { path = "../tk-convert", version = "0.1.0-dev.0", default-features = false }
tk-convert = { path = "../tk-convert", version = "0.1.0-rc.2", default-features = false }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
ahash = { version = "0.8.11", features = ["serde"] }
Expand Down
Loading