vcard-rs 0.2.1

vCard parser, validator, editor and builder library for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! # Whole-card strict layer
//!
//! The "strict out" half of the crate, both parts 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 [`VcardValid`](validate::VcardValid) proof. Both
//! share the same per-property check, and both live here so the tree's read
//! side and its write side stay visibly separate.

pub mod builder;
pub mod validate;