mirror of
https://github.com/mii443/tokenizers.git
synced 2025-08-22 16:25:30 +00:00
31 lines
633 B
TOML
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.23", features = ["abi3", "abi3-py39"] }
|
|
numpy = "0.23"
|
|
ndarray = "0.16"
|
|
itertools = "0.12"
|
|
|
|
[dependencies.tokenizers]
|
|
path = "../../tokenizers"
|
|
|
|
[dev-dependencies]
|
|
tempfile = "3.10"
|
|
pyo3 = { version = "0.23", features = ["auto-initialize"] }
|
|
|
|
[features]
|
|
defaut = ["pyo3/extension-module"]
|