[package] name = "fastok" version = "0.0.1" edition = "2021" authors = ["Alvaro Bartolome "] description = "BPE in Rust with bindings to Python using PyO3" repository = "https://github.com/alvarobartt/fastok" readme = "README.md" license = "MIT OR Apache-2.0" exclude = ["bindings/*", ".github/*"] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [lib] name = "_fastok" # "cdylib" is necessary to produce a shared library for Python to import from. crate-type = ["cdylib"] [dependencies] pyo3 = { version = "0.19.2", features = ["extension-module", "generate-import-lib"] } regex = { version = "1.9.6"}