inline-config 0.3.2

Effortlessly embed config modules and access with any compatible types
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 = "inline-config"
version = "0.3.2"
authors = ["YishiMichael (GitHub)"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Effortlessly embed config modules and access with any compatible types"
homepage = "https://github.com/YishiMichael/inline-config"
readme = "README.md"
keywords = [
    "config",
    "include",
    "inline",
    "structure",
]
categories = [
    "config",
    "data-structures",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/YishiMichael/inline-config"

[features]
default = [
    "json",
    "toml",
    "yaml",
]
indexmap = ["inline-config-macros/indexmap"]
json = ["inline-config-macros/json"]
toml = ["inline-config-macros/toml"]
yaml = ["inline-config-macros/yaml"]

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

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

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

[[example]]
name = "order"
path = "examples/order.rs"
required-features = ["indexmap"]

[dependencies.inline-config-macros]
version = "0.3.2"

[dev-dependencies.indexmap]
version = "2.12.1"