Rust parser for nextcloud config files
  • Rust 82.4%
  • PHP 17%
  • Nix 0.6%
Find a file
2021-09-09 16:32:05 +02:00
.github/workflows check full feature matrix 2021-07-30 17:26:40 +02:00
examples fancy error formatting 2021-05-03 19:15:56 +02:00
src update literal parser 2021-09-09 16:32:05 +02:00
tests/configs update literal parser 2021-09-09 16:32:05 +02:00
.gitignore import from notify_push 2021-05-03 17:14:49 +02:00
Cargo.toml update literal parser 2021-09-09 16:32:05 +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(())
}