46 releases (15 stable)

1.6.1 Mar 23, 2024
1.6.0 Nov 4, 2023
1.5.1 Oct 22, 2023
1.5.0 Jul 9, 2023
0.0.10 Nov 6, 2015

#33 in Parser implementations

Download history 44916/week @ 2023-12-23 55838/week @ 2023-12-30 61063/week @ 2024-01-06 69224/week @ 2024-01-13 69143/week @ 2024-01-20 67383/week @ 2024-01-27 73181/week @ 2024-02-03 72718/week @ 2024-02-10 70408/week @ 2024-02-17 74308/week @ 2024-02-24 95144/week @ 2024-03-02 92786/week @ 2024-03-09 101837/week @ 2024-03-16 112582/week @ 2024-03-23 114736/week @ 2024-03-30 75804/week @ 2024-04-06

415,862 downloads per month
Used in 475 crates (87 directly)

MIT license

225KB
5.5K SLoC

Plist

A rusty plist parser.

Many features from previous versions are now hidden behind the enable_unstable_features_that_may_break_with_minor_version_bumps feature. These will break in minor version releases after the 1.0 release. If you really really must use them you should specify a tilde requirement e.g. plist = "~1.0.3" in you Cargo.toml so that the plist crate is not automatically updated to version 1.1.

Documentation


lib.rs:

Plist

A rusty plist parser.

Usage

Put this in your Cargo.toml:

[dependencies]
plist = "1"

And put this in your crate root:

extern crate plist;

Examples

Using serde

extern crate plist;
#[macro_use]
extern crate serde_derive;

#[derive(Deserialize)]
#[serde(rename_all = "PascalCase")]
struct Book {
    title: String,
    author: String,
    excerpt: String,
    copies_sold: u64,
}

let book: Book = plist::from_file("tests/data/book.plist")
    .expect("failed to read book.plist");

assert_eq!(book.title, "Great Expectations");
#

Using Value

use plist::Value;

let book = Value::from_file("tests/data/book.plist")
    .expect("failed to read book.plist");

let title = book
    .as_dictionary()
    .and_then(|dict| dict.get("Title"))
    .and_then(|title| title.as_string());

assert_eq!(title, Some("Great Expectations"));

Unstable Features

Many features from previous versions are now hidden behind the enable_unstable_features_that_may_break_with_minor_version_bumps feature. These will break in minor version releases after the 1.0 release. If you really really must use them you should specify a tilde requirement e.g. plist = "~1.0.3" in you Cargo.toml so that the plist crate is not automatically updated to version 1.1.

Dependencies

~3.5MB
~62K SLoC