mirror of
https://codeberg.org/icewind/nextcloud-config-parser.git
synced 2026-06-03 08:34:13 +02:00
Rust parser for nextcloud config files
- Rust 82.4%
- PHP 17%
- Nix 0.6%
| .github/workflows | ||
| examples | ||
| src | ||
| tests/configs | ||
| .gitignore | ||
| Cargo.toml | ||
| README.md | ||
nextcloud-config-parser
Rust parser for nextcloud config files.
Usage
use nextcloud_config_parser::{parse, Error};
fn main() -> Result<(), Error> {
let config = parse("tests/configs/basic.php")?;
dbg!(config);
Ok(())
}