[package]
edition = "2024"
rust-version = "1.85"
name = "split-paragraphs"
version = "1.0.0"
authors = ["Ľubomír Kurčák <lubomirkurcak@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Iterator over paragraphs of a string."
readme = "README.md"
keywords = [
"paragraphs",
"split",
"iterator",
"no-std",
"no-alloc",
]
categories = [
"parsing",
"rust-patterns",
"text-processing",
"no-std",
"no-std::no-alloc",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/lubomirkurcak/split-paragraphs"
[lib]
name = "split_paragraphs"
path = "src/lib.rs"
[[test]]
name = "tests"
path = "tests/tests.rs"