# 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 = "home-config" version = "0.6.0" authors = ["wyhaya "] description = "Use configuration file in the HOME directory" homepage = "https://github.com/wyhaya/home-config" readme = "README.md" keywords = [ "home", "config", "config-file", ] license = "MIT" repository = "https://github.com/wyhaya/home-config.git" [package.metadata.docs.rs] features = [ "json", "yaml", "toml", "hcl", ] [dependencies.dirs] version = "4.0.0" [dependencies.hcl-rs] version = "0.9.0" optional = true [dependencies.serde] version = "1.0.147" features = ["derive"] optional = true [dependencies.serde_json] version = "1.0.87" optional = true [dependencies.serde_yaml] version = "0.9.14" optional = true [dependencies.toml] version = "0.5.9" optional = true [features] default = [] hcl = [ "dep:serde", "dep:hcl-rs", ] json = [ "dep:serde", "dep:serde_json", ] toml = [ "dep:serde", "dep:toml", ] yaml = [ "dep:serde", "dep:serde_yaml", ]