plist-rs icon indicating copy to clipboard operation
plist-rs copied to clipboard

Property list parser in Rust

Results 6 plist-rs issues
Sort by recently updated
recently updated
newest added

Pull it in from https://github.com/kennytm/libimobiledevice-rust

enhancement

See [this](https://developer.apple.com/library/content/documentation/Cocoa/Conceptual/PropertyLists/OldStylePlists/OldStylePLists.html) They are still able to be read from macOS, so why not add support?

enhancement

See https://github.com/libimobiledevice/libplist/issues/83 The goal would be to mimic [CFBinaryPList.c](https://github.com/apple/swift-corelibs-foundation/blob/master/CoreFoundation/Parsing.subproj/CFBinaryPList.c) in behavior, and sidestep #4

enhancement

Like [`Result`](https://doc.rust-lang.org/beta/std/result/enum.Result.html), `Plist` should have convenience accessors. Something like the following, but for all data types: ``` impl Plist { fn is_string(&self) -> bool; fn string(self) -> Option; } ```...

enhancement
help wanted