#![doc = include_str!("../README.md")]
#![forbid(unsafe_code)]
#![warn(missing_docs, clippy::pedantic)]
#![allow(clippy::missing_errors_doc, clippy::module_name_repetitions)]
pub mod ast;
mod error;
mod eval;
mod exec;
mod lexer;
mod notice;
mod parser;
pub mod render;
mod scan;
mod value;
pub use error::{Error, Result};
pub use exec::{execute, execute_with, Cell, Options, Results, Row};
pub use notice::{Skipped, Tally};
pub use parser::{parse, parse_with};
pub use value::{Kind, Value};
pub use slpc;