Rust parser for nextcloud config files
- Rust 82.4%
- PHP 17%
- Nix 0.6%
| .forgejo/workflows | ci | |
| examples | fix parsing with new default comment | |
| src | fix parsing with new default comment | |
| tests | fix parsing with new default comment | |
| .envrc | flake | |
| .gitignore | nix based ci | |
| Cargo.lock | 0.15.3 | |
| Cargo.toml | 0.15.3 | |
| flake.lock | updates | |
| flake.nix | updates | |
| README.md | flake reorg | |
nextcloud-config-parser
Rust parser for nextcloud config files.
Usage
usenextcloud_config_parser::{parse,Error};fn main()-> Result<(),Error>{letconfig=parse("tests/configs/basic.php")?;dbg!(config);Ok(())}