[package]
edition = "2021"
rust-version = "1.75"
name = "snipsplit-core"
version = "0.1.1"
authors = ["Mukunda Katta"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Pure-Rust core for snipsplit: token-aware text chunker for RAG ingestion."
homepage = "https://github.com/MukundaKatta/snipsplit"
documentation = "https://docs.rs/snipsplit-core"
readme = "README.md"
keywords = [
"chunker",
"rag",
"tokenizer",
"split",
"llm",
]
categories = [
"text-processing",
"science",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/MukundaKatta/snipsplit"
[lib]
name = "snipsplit_core"
path = "src/lib.rs"
[dependencies.rayon]
version = "1.10"
[dependencies.regex]
version = "1.11"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.thiserror]
version = "2.0"
[dependencies.tiktoken-rs]
version = "0.6"