Rust parser for nextcloud config files
  • Rust 82.4%
  • PHP 17%
  • Nix 0.6%
Find a file
2024-03-11 16:05:12 +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 fix handling of pgsql sockets without hostname 2024-01-31 18:25:18 +01: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 bumb dependencies 2024-03-11 16:05:12 +01:00
Cargo.toml bumb dependencies 2024-03-11 16:05:12 +01:00
flake.lock nix based ci 2023-11-30 21:02:31 +01:00
flake.nix bumb dependencies 2024-03-11 16:05:12 +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(())
}