[package]
edition = "2024"
rust-version = "1.94"
name = "chunkedrs"
version = "1.0.1"
authors = [
"GOLIA株式会社",
"Li Hao <lihao@golia.jp>",
]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "AI-native text chunking — recursive, markdown-aware, and semantic splitting with token-accurate boundaries"
homepage = "https://github.com/goliajp/airs"
documentation = "https://docs.rs/chunkedrs"
readme = "README.md"
keywords = [
"chunking",
"rag",
"text-splitting",
"tokenizer",
"ai",
]
categories = ["text-processing"]
license = "MIT"
repository = "https://github.com/goliajp/airs"
[features]
default = []
semantic = ["dep:embedrs"]
[lib]
name = "chunkedrs"
path = "src/lib.rs"
[dependencies.embedrs]
version = "0.3"
optional = true
[dependencies.tiktoken]
version = "3.1"
[dev-dependencies.tokio]
version = "1"
features = [
"macros",
"rt-multi-thread",
]