1
0
Fork
You've already forked nextcloud-config-parser
0
Rust parser for nextcloud config files
  • Rust 82.4%
  • PHP 17%
  • Nix 0.6%
Robin Appelman cbbfa41a58
Some checks failed
CI / semver (push) Failing after 50s
CI / checks (push) Successful in 1m11s
0.15.3
2026年05月06日 17:17:43 +02:00
.forgejo/workflows ci 2025年08月07日 16:55:55 +02:00
examples fix parsing with new default comment 2026年05月06日 17:17:43 +02:00
src fix parsing with new default comment 2026年05月06日 17:17:43 +02:00
tests fix parsing with new default comment 2026年05月06日 17:17:43 +02:00
.envrc flake 2022年10月06日 15:43:48 +02:00
.gitignore nix based ci 2023年11月30日 21:02:31 +01:00
Cargo.lock 0.15.3 2026年05月06日 17:17:43 +02:00
Cargo.toml 0.15.3 2026年05月06日 17:17:43 +02:00
flake.lock updates 2026年03月02日 22:43:56 +01:00
flake.nix updates 2026年03月02日 22:43:56 +01:00
README.md flake reorg 2024年12月13日 17:31:16 +01:00

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(())}