[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"