Crates.io | nextcloud-config-parser |
lib.rs | nextcloud-config-parser |
version | 0.11.0 |
source | src |
created_at | 2021-05-03 17:24:33.451298 |
updated_at | 2024-07-26 16:22:18.724714 |
description | Rust parser for nextcloud config files |
homepage | |
repository | https://github.com/icewind1991/nextcloud-config-parser |
max_upload_size | |
id | 392606 |
size | 109,765 |
Rust parser for nextcloud config files.
use nextcloud_config_parser::{parse, Error};
fn main() -> Result<(), Error> {
let config = parse("tests/configs/basic.php")?;
dbg!(config);
Ok(())
}