hocon-parser 1.1.0

Full Lightbend HOCON specification-compliant parser for Rust
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 = "2021"
rust-version = "1.82"
name = "hocon-parser"
version = "1.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Full Lightbend HOCON specification-compliant parser for Rust"
readme = "README.md"
keywords = [
    "hocon",
    "config",
    "configuration",
    "parser",
    "rust",
]
categories = [
    "config",
    "parser-implementations",
]
license = "Apache-2.0"
repository = "https://github.com/o3co/rs.hocon"

[features]
default = []
serde = [
    "dep:serde",
    "dep:serde_json",
]

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

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

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

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

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

[[bench]]
name = "parse_bench"
path = "benches/parse_bench.rs"
harness = false

[dependencies.indexmap]
version = "2"

[dependencies.serde]
version = "1"
features = ["derive"]
optional = true

[dependencies.serde_json]
version = "1"
optional = true

[dev-dependencies.criterion]
version = "0.5"
features = ["html_reports"]

[dev-dependencies.serde]
version = "1"
features = ["derive"]

[dev-dependencies.serde_json]
version = "1"

[dev-dependencies.tempfile]
version = ">=3.19, <3.20"