aboutsummaryrefslogtreecommitdiffstats
path: root/src
AgeCommit message (Collapse)Author
2017-03-03Don’t panic on invalid object references.fuzzEdward Barnard
2017-03-03Limit individual allocation sizes to the size of the plist being read.Edward Barnard
2017-02-22serde::deserialize should support binary and xml encodings.Edward Barnard
2017-02-22Rustfmt.Edward Barnard
2017-02-22Update usage example.Edward Barnard
2017-02-22Use builder pattern for xml_rs config structs.Edward Barnard
2017-02-22Track xml-rs changes (#17)Raph Levien
A recent release of xml-rs (0.3.7) added a new field to the parser config. This patch provides that field and also updates the version.
2017-02-02Update Serde to 0.9.Edward Barnard
2017-02-02Add simple serde example.Edward Barnard
2017-02-02Improve binary plist datetime decoding.Edward Barnard
2017-02-02Run rustfmt.Edward Barnard
2017-02-02Move Plist to separate module.Edward Barnard
2017-02-02Stop ignoring working doc test.Edward Barnard
2017-02-02Support Serde 0.8. Bump minimum Rust version to 0.15.Edward Barnard
2017-02-01Remove unwanted From conversionsDavid LeGare
2017-02-01Add From impls for PlistDavid LeGare
Add the most common/reasonable conversions from primitive and std types to Plist variants. There's a bit of uncertainty with `Vec<u8>` and `&[u8]` where it's not obvious whether they should convert to `Plist::Array` or `Plist::Data`. I've opted for `Plist::Data`, but converting to `Plist::Array` would also be reasonable.
2017-02-01Fix warning coming from double return statementDavid LeGare
2016-12-24Write XML dates in the correct format. Closes #13.Edward Barnard
2016-09-06Correctly read the length of UTF16 stringsEdward Barnard
Closes #12
2016-04-03Update dependencies and fix travisEdward Barnard
2016-04-03Implement into_data and into_string methods for PlistAleksey Kuznetsov
2016-04-03Implement methods that allow access to the Plist valuesAleksey Kuznetsov
2015-12-30Improve error handlingEdward Barnard
2015-12-30RenamingEdward Barnard
2015-12-26Bump versionEdward Barnard
2015-12-26Fix formattingEdward Barnard
2015-12-26Improve deserializer errorsEdward Barnard
2015-12-26Kill StartPlist and EndPlistEdward Barnard
2015-12-26Add serialization utility methodsEdward Barnard
2015-12-25Better handling of u64 to usize conversionsEdward Barnard
2015-12-25Fix UTF-16 decoding.Hubert Figuière
2015-12-24Improve error situationEdward Barnard
2015-12-24Add serde serialization testsEdward Barnard
2015-12-24Implement serde serializationEdward Barnard
2015-12-24Add some information about PlistEventEdward Barnard
2015-12-24Fix indentationEdward Barnard
2015-12-22Add some docsEdward Barnard
2015-12-22Add Plist::read utility methodEdward Barnard
2015-12-22Hide EventReader variantsEdward Barnard
2015-12-22RustfmtEdward Barnard
2015-12-22EventReader lazy initializationEdward Barnard
2015-12-22Make Builder type private. Functionality is available in Plist::from_events.Edward Barnard
2015-12-22Rename StreamingParser to EventReader and Writer to EventWriterEdward Barnard
2015-11-06Add Plist::into_eventsEdward Barnard
2015-11-06Update xml-rsEdward Barnard
2015-11-06xml::Writer works!Edward Barnard
2015-10-26Add warning to xml writerEdward Barnard
2015-09-26Fuse xml reader on errorEdward Barnard
2015-09-23Remove dependency on itertoolsEdward Barnard
2015-09-23Seek back to start in is_binaryEdward Barnard