From 2dc6a74b84825f65142c1fa7d3e67cd4f35ee3cb Mon Sep 17 00:00:00 2001 From: Ryan Leckey Date: Wed, 8 Mar 2017 11:09:37 -0800 Subject: Initial work on deep serde integration --- Cargo.toml | 30 ++++++++---------------------- 1 file changed, 8 insertions(+), 22 deletions(-) (limited to 'Cargo.toml') diff --git a/Cargo.toml b/Cargo.toml index 0f9fad1..99ff591 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,22 +1,8 @@ -[package] -name = "config" -version = "0.4.1" -description = "Layered configuration system for Rust applications." -homepage = "https://github.com/mehcode/config-rs" -repository = "https://github.com/mehcode/config-rs" -readme = "README.md" -keywords = ["config", "configuration", "settings", "env", "environment"] -authors = ["Ryan Leckey "] -license = "MIT/Apache-2.0" - -[features] -default = ["toml"] -json = ["serde_json"] -yaml = ["yaml-rust"] - -[dependencies] -nom = "^2.1" - -toml = { version = "0.2.1", optional = true } -serde_json = { version = "0.9", optional = true } -yaml-rust = { version = "0.3.5", optional = true } +[workspace] +members = [ + "lib", + "examples/basic", + # "examples/file-json", + "examples/file-toml", + # "examples/file-yaml", +] -- cgit v1.2.3