[package]
edition = "2021"
rust-version = "1.78"
name = "synaptic-splitters"
version = "0.1.0"
authors = ["Synapse Contributors"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Text splitters: Character, Recursive, Markdown, HTML, Language, Token"
readme = false
license = "MIT"
repository = "https://github.com/dnw3/synaptic"
[lib]
name = "synaptic_splitters"
path = "src/lib.rs"
[[test]]
name = "character"
path = "tests/character.rs"
[[test]]
name = "html_header"
path = "tests/html_header.rs"
[[test]]
name = "language"
path = "tests/language.rs"
[[test]]
name = "markdown"
path = "tests/markdown.rs"
[[test]]
name = "recursive"
path = "tests/recursive.rs"
[[test]]
name = "token"
path = "tests/token.rs"
[dependencies.serde_json]
version = "1.0"
[dependencies.synaptic-core]
version = "0.1.0"
[dependencies.synaptic-retrieval]
version = "0.1.0"
[dev-dependencies.tokio]
version = "1.41"
features = [
"macros",
"rt-multi-thread",
"sync",
"time",
"fs",
]