1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
//! # rolodex
//!
//! rolodex represents vcard as a vector of properties.

pub mod value;
pub use self::value::{AtLeastOne, PropertyValue, TypeOrRaw, Value};

pub mod types;

pub mod property;
pub use self::property::{Parameter, Parameters, Property};

mod vcard;
pub use self::vcard::VCard;

mod vcf;
pub use self::vcf::Vcf;

pub mod parse;
pub use self::parse::{Parse, ParseError};

pub const DATE_FORMAT: &str = "%Y%m%d";