Rust parser for nextcloud config files
  • Rust 82.4%
  • PHP 17%
  • Nix 0.6%
Find a file
2026-03-02 22:49:35 +01:00
.forgejo/workflows ci 2025-08-07 16:55:55 +02:00
examples update dependencies 2022-01-19 16:25:24 +01:00
src fix formatting 2026-03-02 22:49:35 +01:00
tests updates 2026-03-02 22:43:56 +01: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 updates 2026-03-02 22:43:56 +01:00
Cargo.toml updates 2026-03-02 22:43:56 +01: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

use nextcloud_config_parser::{parse, Error};

fn main() -> Result<(), Error> {
    let config = parse("tests/configs/basic.php")?;
    dbg!(config);

    Ok(())
}