Files
tokenizers/bindings/python/Cargo.toml
Arthur 24d29f498d Update dev version and pyproject.toml (#1693)
* update pyproject.toml

* update py dev version
2024-11-27 16:01:48 +01:00

31 lines
633 B
TOML

[package]
name = "tokenizers-python"
version = "0.21.0-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.22", features = ["abi3", "abi3-py39"] }
numpy = "0.22"
ndarray = "0.15"
itertools = "0.12"
[dependencies.tokenizers]
path = "../../tokenizers"
[dev-dependencies]
tempfile = "3.10"
pyo3 = { version = "0.22", features = ["auto-initialize"] }
[features]
defaut = ["pyo3/extension-module"]