config-forge 0.1.2

A CLI tool for converting, inspecting, and validating configuration files.
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 = "config-forge"
version = "0.1.2"
build = false
exclude = ["/tests/fixtures/*"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A CLI tool for converting, inspecting, and validating configuration files."
readme = "README.md"
keywords = [
    "config",
    "converter",
    "json",
    "toml",
    "yaml",
]
categories = [
    "command-line-utilities",
    "config",
    "development-tools",
]
license = "MIT OR Apache-2.0"

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

[[bin]]
name = "config-forge"
path = "src/main.rs"

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

[dependencies.anyhow]
version = "1.0.100"

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

[dependencies.indexmap]
version = "2.12.1"
features = ["serde"]

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

[dependencies.serde_json]
version = "1.0.145"
features = ["preserve_order"]

[dependencies.serde_yaml]
version = "0.9.34"

[dependencies.toml]
version = "0.9.8"
features = ["preserve_order"]

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

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

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