Rust parser for nextcloud config files
  • Rust 82.4%
  • PHP 17%
  • Nix 0.6%
Find a file
2024-01-23 15:08:58 +01:00
.github/workflows nix based ci 2023-11-30 21:02:31 +01:00
examples update dependencies 2022-01-19 16:25:24 +01:00
src nix based ci 2023-11-30 21:02:31 +01:00
tests add test for credentials escaping 2024-01-23 15:08:58 +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 redis 0.24 2024-01-22 15:02:18 +01:00
Cargo.toml redis 0.24 2024-01-22 15:02:18 +01:00
flake.lock nix based ci 2023-11-30 21:02:31 +01:00
flake.nix nix based ci 2023-11-30 21:02:31 +01: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(())
}