kibble 0.1.0

chew through any source into clean datasets — a fast ingestion, RAG & fine-tuning toolkit
Documentation
1
2
3
4
# Ownership
Rust's ownership system guarantees memory safety at compile time without a garbage collector.
Every value has a single owner; when the owner goes out of scope, the value is dropped.
This is how Rust frees memory deterministically without runtime GC pauses.