Rust parser for nextcloud config files
  • Rust 82.4%
  • PHP 17%
  • Nix 0.6%
Find a file
2023-01-03 19:28:46 +01:00
.github/workflows bumb dependencies 2022-10-06 17:54:53 +02:00
examples update dependencies 2022-01-19 16:25:24 +01:00
src fallback to having php parse the config file and exporting it as json 2023-01-03 19:28:46 +01:00
tests/configs fallback to having php parse the config file and exporting it as json 2023-01-03 19:28:46 +01:00
.envrc flake 2022-10-06 15:43:48 +02:00
.gitignore flake 2022-10-06 15:43:48 +02:00
Cargo.toml fallback to having php parse the config file and exporting it as json 2023-01-03 19:28:46 +01:00
flake.lock flake 2022-10-06 15:43:48 +02:00
flake.nix bumb dependencies 2022-10-06 17:54:53 +02:00
README.md readme and crate meta 2021-05-03 17:23:08 +02: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(())
}