[dependencies.indexmap]
optional = true
version = "2.12.1"
[dependencies.inline-config-macros]
version = "0.1.0"
[[example]]
name = "basic"
path = "examples/basic.rs"
[[example]]
name = "include"
path = "examples/include.rs"
[[example]]
name = "order"
path = "examples/order.rs"
required-features = ["indexmap"]
[features]
default = ["json", "toml", "yaml"]
indexmap = ["inline-config-macros/indexmap", "dep:indexmap"]
json = ["inline-config-macros/json"]
toml = ["inline-config-macros/toml"]
yaml = ["inline-config-macros/yaml"]
[lib]
name = "inline_config"
path = "src/lib.rs"
[package]
authors = ["YishiMichael (GitHub)"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["config", "data-structures"]
description = "Effortlessly embed config as static data and access with any compatible data structures"
edition = "2024"
homepage = "https://github.com/YishiMichael/inline-config"
keywords = ["config", "include", "static", "inline"]
license = "MIT OR Apache-2.0"
name = "inline-config"
readme = "README.md"
repository = "https://github.com/YishiMichael/inline-config"
version = "0.1.0"