//! The crate-level entry point for parsing a `&str` into a [`Value`].
use crateError;
use crateValue;
use Parser;
/// Parse Ktav text into a [`Value`]. Iterates the input via
/// [`str::lines`] — each iteration yields a `&str` slice into the
/// original buffer, so no per-line `String` allocation occurs.
pub