# 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 = "derive-config" version = "2.3.0" build = false autobins = false autoexamples = false autotests = false autobenches = false description = "My personal configuration library" readme = "README.md" keywords = [ "serde", "derive", "config", ] categories = ["config"] license = "MIT" repository = "https://github.com/ShayBox/Derive-Config" [lib] name = "derive_config" path = "src/lib.rs" [dependencies.derive-macros] version = "2" [dependencies.dirs] version = "5" optional = true [dependencies.duplicate] version = "2" [dependencies.json] version = "1" optional = true package = "serde_json" [dependencies.thiserror] version = "1" [dependencies.toml] version = "0.8" optional = true [dependencies.yaml] version = "0.9" optional = true package = "serde_yaml" [features] dirs = [ "derive-macros/dirs", "dep:dirs", ] json = [ "derive-macros/json", "dep:json", ] toml = [ "derive-macros/toml", "dep:toml", ] yaml = [ "derive-macros/yaml", "dep:yaml", ] [lints.clippy] cargo = "warn" nursery = "warn" pedantic = "warn"