Rust parser for nextcloud config files
  • Rust 82.4%
  • PHP 17%
  • Nix 0.6%
Find a file
2021-05-03 19:15:56 +02:00
.github/workflows optional sqlx 2021-05-03 18:32:18 +02:00
examples fancy error formatting 2021-05-03 19:15:56 +02:00
src fancy error formatting 2021-05-03 19:15:56 +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 fancy error formatting 2021-05-03 19:15:56 +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(())
}