rolodex

Crates.iorolodex
lib.rsrolodex
version0.1.2
sourcesrc
created_at2021-04-10 13:59:55.271365
updated_at2021-04-17 04:14:56.022381
descriptionA Forgiving VCard implementation.
homepagehttps://github.com/Bytebuddha/rolodex
repository
max_upload_size
id381694
size84,549
Patrick Greene (bytebuddha)

documentation

https://docs.rs/rolodex

README

rolodex

[WIP] A forgivable VCard parser for rust based on RFC6350.

Crate features

All library features are enabled by default

  • serde serde support
  • typed-builder typed builder support

Example

use rolodex::{VCard, Parse};

const DATA: &'static str = "BEGIN:VCARD
VERSION:4.0
N:Gump;Forrest;;Mr.;
FN:Forrest Gump
ORG:Bubba Gump Shrimp Co.
END:VCARD";

let vcard: VCard<'static> = Parse::parse(DATA)?;

Alternatives

vcard

This library is great but i require a vcard parser that hopefully will not fail even when receiving malformed input, and the way the library is designed doesn't facilitate this.

Commit count: 0

cargo fmt