| Crates.io | nextcloud-config-parser |
| lib.rs | nextcloud-config-parser |
| version | 0.14.1 |
| created_at | 2021-05-03 17:24:33.451298+00 |
| updated_at | 2025-08-11 08:47:19.701843+00 |
| description | Rust parser for nextcloud config files |
| homepage | |
| repository | https://codeberg.org/icewind/nextcloud-config-parser |
| max_upload_size | |
| id | 392606 |
| size | 116,947 |
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(())
}