22 releases
new 0.6.2 | Nov 5, 2024 |
---|---|
0.6.1 | Jul 20, 2024 |
0.6.0 | Mar 11, 2024 |
0.5.1 | Feb 23, 2023 |
0.2.0 | Dec 13, 2020 |
#862 in Parser implementations
40 downloads per month
Used in nextcloud-config-parser
81KB
2.5K
SLoC
php-literal-parser
parser for php literals.
Usage
Parse into a generic representation
use php_literal_parser::{from_str, Value, ParseError};
fn main() -> Result<(), ParseError> {
let map = from_str::<Value>(r#"["foo" => true, "nested" => ['foo' => false]]"#)?;
assert_eq!(map["foo"], true);
assert_eq!(map["nested"]["foo"], false);
Ok(())
}
Or parse into a specific struct using serde
use php_literal_parser::{from_str, ParseError};
use serde::Deserialize;
#[derive(Debug, Deserialize, PartialEq)]
struct Target {
foo: bool,
bars: Vec<u8>
}
fn main() -> Result<(), ParseError> {
let target = from_str(r#"["foo" => true, "bars" => [1, 2, 3, 4,]]"#)?;
assert_eq!(Target {
foo: true,
bars: vec![1, 2, 3, 4]
}, target);
Ok(())
}
lib.rs
:
Parser for php literals.
Allows parsing of php string, bool, number and array literals.
Usage
Parse into a generic representation
use php_literal_parser::{from_str, Value};
let map = from_str::<Value>(r#"["foo" => true, "nested" => ['foo' => false]]"#)?;
assert_eq!(map["foo"], true);
assert_eq!(map["nested"]["foo"], false);
Or parse into a specific struct using serde
use php_literal_parser::from_str;
use serde::Deserialize;
#[derive(Debug, Deserialize, PartialEq)]
struct Target {
foo: bool,
bars: Vec<u8>
}
let target = from_str(r#"["foo" => true, "bars" => [1, 2, 3, 4,]]"#)?;
assert_eq!(Target {
foo: true,
bars: vec![1,2,3,4]
}, target);
Dependencies
~5.5–7.5MB
~104K SLoC