miniconf-parser 0.1.3

Pest-powered parser and CLI for the MiniConf configuration format.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
name = "miniconf-parser"
version = "0.1.3"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Pest-powered parser and CLI for the MiniConf configuration format."
homepage = "https://github.com/kit/miniconf-parser"
documentation = "https://docs.rs/miniconf-parser"
readme = "README.md"
keywords = [
    "parser",
    "config",
    "pest",
]
categories = [
    "config",
    "parser-implementations",
]
license = "MIT"
repository = "https://github.com/kit/miniconf-parser"

[package.metadata.docs.rs]
all-features = true

[lib]
name = "miniconf_parser"
path = "src/lib.rs"

[[bin]]
name = "miniconf-parser"
path = "src/main.rs"

[[example]]
name = "basic_usage"
path = "examples/basic_usage.rs"

[[example]]
name = "parse_file"
path = "examples/parse_file.rs"

[[test]]
name = "integration_tests"
path = "tests/integration_tests.rs"

[[test]]
name = "parser_tests"
path = "tests/parser_tests.rs"

[dependencies.anyhow]
version = "1.0"

[dependencies.clap]
version = "4.5"
features = ["derive"]

[dependencies.pest]
version = "2.8.3"

[dependencies.pest_derive]
version = "2.8.3"

[dependencies.serde]
version = "1.0"
features = ["derive"]

[dependencies.serde_json]
version = "1.0"

[dependencies.thiserror]
version = "2.0"

[dev-dependencies.assert_cmd]
version = "2.0"

[dev-dependencies.predicates]
version = "3.1"

[dev-dependencies.tempfile]
version = "3.10"