Rust parser for nextcloud config files
  • Rust 82.4%
  • PHP 17%
  • Nix 0.6%
Find a file
2021-05-03 17:23:08 +02:00
.github/workflows ci 2021-05-03 17:16:48 +02:00
examples readme and crate meta 2021-05-03 17:23:08 +02:00
src import from notify_push 2021-05-03 17:14:49 +02:00
tests/configs import from notify_push 2021-05-03 17:14:49 +02:00
.gitignore import from notify_push 2021-05-03 17:14:49 +02:00
Cargo.toml readme and crate meta 2021-05-03 17:23:08 +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(())
}