2 unstable releases

0.2.0 Nov 5, 2023
0.1.0 Aug 8, 2021

#560 in Text processing

Download history 784/week @ 2023-11-23 396/week @ 2023-11-30 541/week @ 2023-12-07 634/week @ 2023-12-14 467/week @ 2023-12-21 432/week @ 2023-12-28 527/week @ 2024-01-04 566/week @ 2024-01-11 586/week @ 2024-01-18 575/week @ 2024-01-25 793/week @ 2024-02-01 835/week @ 2024-02-08 719/week @ 2024-02-15 682/week @ 2024-02-22 687/week @ 2024-02-29 404/week @ 2024-03-07

2,651 downloads per month
Used in 20 crates (5 directly)

MIT/Apache

34KB
525 lines

keyvalues-parser

codecov build status Documentation

keyvalues-parser uses pest to parse VDF text v1 files to an untyped Rust structure to ease manipulation and navigation. The parser provides an untyped Vdf representation as well as a linear TokenStream

The library is primarily used in conjunction with keyvalues-serde which provides a more ergonomic (yet more limiting) means of dealing with VDF text.

Installation

Just add the library to your Cargo.toml

[dependencies]
keyvalues-parser = "0.1.0"

Quickstart

const LOGIN_USERS_VDF: &str = r#"
"users"
{
    "12345678901234567"
    {
        "AccountName"        "ACCOUNT_NAME"
        "PersonaName"        "PERSONA_NAME"
        "RememberPassword"    "1"
        "MostRecent"        "1"
        "Timestamp"        "1234567890"
    }
}
"#;

use keyvalues_parser::Vdf;

fn main() -> Result<(), Box<dyn std::error::Error>> {
    let vdf = Vdf::parse(LOGIN_USERS_VDF)?;
    assert_eq!(
        "12345678901234567",
	vdf.value.unwrap_obj().keys().next().unwrap(),
    );

    Ok(())
}

Limitations

VDF text is drastically underspecified. This leads to the following liberties being taken

  • Not respecting the ordering of key-value pairs, where the pairs are stored in a BTreeMap that sorts the values based on the key
  • Because of limitations in representing sequences, an empty Vec of values will be rendered as a missing keyvalue pair

Benchmarks

A set of basic benchmarks can be found in the benches directory

These just test timing and throughput for both parsing and rendering of a fairly typical VDF file

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

Dependencies

~2.1–2.9MB
~58K SLoC