Rust parser for nextcloud config files
  • Rust 82.4%
  • PHP 17%
  • Nix 0.6%
Find a file
2024-12-13 17:31:16 +01:00
.github/workflows flake reorg 2024-12-13 17:31:16 +01:00
examples update dependencies 2022-01-19 16:25:24 +01:00
src 0.11.0 2024-07-26 18:16:25 +02:00
tests fix handling of pgsql sockets without hostname 2024-01-31 18:25:18 +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 update: php-literal-parser to v0.6.2 2024-12-02 20:16:01 +00:00
Cargo.toml 0.11.0 2024-07-26 18:16:25 +02:00
flake.lock flake reorg 2024-12-13 17:31:16 +01:00
flake.nix flake reorg 2024-12-13 17:31:16 +01:00
README.md flake reorg 2024-12-13 17:31:16 +01: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(())
}