[package]
edition = "2021"
rust-version = "1.70"
name = "tokenx-rs"
version = "0.1.0"
authors = ["Qbit AI"]
build = false
exclude = [
".github/",
"benches/",
"tests/",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Fast token count estimation for LLMs at 96% accuracy without a full tokenizer"
homepage = "https://github.com/qbit-ai/tokenx-rs"
documentation = "https://docs.rs/tokenx-rs"
readme = "README.md"
keywords = [
"llm",
"tokenizer",
"tokens",
"gpt",
"claude",
]
categories = [
"text-processing",
"algorithms",
]
license = "MIT"
repository = "https://github.com/qbit-ai/tokenx-rs"
[lib]
name = "tokenx_rs"
path = "src/lib.rs"
[dev-dependencies.criterion]
version = "0.5"
features = ["html_reports"]
[dev-dependencies.proptest]
version = "1.4"