vcard-rs 0.1.0

vCard parser, validator, editor and builder library for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! # Whole-card strict layer
//!
//! The "strict out" half of the crate, both facing the decoded card: the
//! [`builder`] constructs one property at a time against its spec, and
//! [`validate`] checks a whole [`Vcard`](crate::vcard::Vcard) against the RFC
//! 6350 rules and mints a [`Valid`](validate::Valid) proof. Both share the
//! same per-property check, and both live here so the tree's read side
//! ([`cst`](crate::tree::cst), [`codec`](crate::tree::codec)) and its write
//! side stay visibly separate.

pub mod builder;
pub mod validate;