Files
tokenizers/bindings/python/Cargo.toml
Arthur 01f8bc834c clippy (#1781)
* clippy

* fmtr

* rutc?

* fix onig issue

* up

* decode stream default

* jump a release for cargo audit ...

* more cliippy stuff

* clippy?

* proper style

* fmt
2025-05-27 11:30:32 +02:00

31 lines
646 B
TOML

[package]
name = "tokenizers-python"
version = "0.21.2-dev.0"
authors = ["Anthony MOI <m.anthony.moi@gmail.com>"]
edition = "2021"
[lib]
name = "tokenizers"
crate-type = ["cdylib"]
[dependencies]
rayon = "1.10"
serde = { version = "1.0", features = ["rc", "derive"] }
serde_json = "1.0"
libc = "0.2"
env_logger = "0.11"
pyo3 = { version = "0.24", features = ["abi3", "abi3-py39", "py-clone"] }
numpy = "0.24"
ndarray = "0.16"
itertools = "0.12"
[dependencies.tokenizers]
path = "../../tokenizers"
[dev-dependencies]
tempfile = "3.10"
pyo3 = { version = "0.24", features = ["auto-initialize"] }
[features]
default = ["pyo3/extension-module"]