cirious_codex_config 0.1.0

A robust, foundational configuration management framework for the Cirious ecosystem.
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"
name = "cirious_codex_config"
version = "0.1.0"
authors = ["Cirious Studio <cirious.studio@proton.me>"]
build = false
exclude = [
    ".github/",
    ".gitignore",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A robust, foundational configuration management framework for the Cirious ecosystem."
homepage = "https://github.com/cirious-studio/cirious_codex_config"
documentation = "https://docs.rs/cirious_codex_config"
readme = "README.md"
keywords = [
    "config",
    "settings",
    "serde",
    "configuration",
    "framework",
]
categories = [
    "config",
    "development-tools",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/cirious-studio/cirious_codex_config"

[features]
default = []
full = [
    "toml",
    "yaml",
    "term",
    "logger",
]
logger = ["dep:cirious_codex_logger"]
term = ["dep:cirious_codex_term"]
toml = ["dep:toml"]
yaml = ["dep:serde_yaml"]

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

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

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

[dependencies.cirious_codex_logger]
version = "0.1"
optional = true

[dependencies.cirious_codex_result]
version = "0.1"

[dependencies.cirious_codex_term]
version = "0.1"
optional = true

[dependencies.ron]
version = "0.12.1"

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

[dependencies.serde_json]
version = "1.0"

[dependencies.serde_yaml]
version = "0.9"
optional = true

[dependencies.toml]
version = "1.0"
optional = true

[lints.clippy]
expect_used = "warn"
nursery = "warn"
pedantic = "warn"
unwrap_used = "warn"

[lints.rust]
missing_debug_implementations = "warn"
missing_docs = "warn"
unsafe_code = "forbid"