| Crates.io | rolodex |
| lib.rs | rolodex |
| version | 0.1.2 |
| created_at | 2021-04-10 13:59:55.271365+00 |
| updated_at | 2021-04-17 04:14:56.022381+00 |
| description | A Forgiving VCard implementation. |
| homepage | https://github.com/Bytebuddha/rolodex |
| repository | |
| max_upload_size | |
| id | 381694 |
| size | 84,549 |
[WIP] A forgivable VCard parser for rust based on RFC6350.
All library features are enabled by default
serde serde supporttyped-builder typed builder supportuse 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)?;
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.