baskerville 0.1.0

Infer and validate data-type schemas in Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
mod field;
pub mod validators;

pub use field::Field;
pub use validators::{DataType, Empty, Float, Integer, Literal, Text, Unique, Validator};

#[cfg(feature = "time")]
pub use validators::{Date, DateTime, Time};

mod csv;
pub use crate::csv::{infer_csv, infer_csv_with_options, CsvInput, InferOptions};