diff --git a/Cargo.toml b/Cargo.toml index 9c0327a..b7f4468 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,11 +4,22 @@ version = "0.1.0" authors = ["Lukas Kalbertodt "] edition = "2018" +description = "Type-safe, layered, light-weight, `serde`-based configuration library" +documentation = "https://docs.rs/confique/" +repository = "https://github.com/LukasKalbertodt/confique/" +readme = "README.md" +license = "MIT/Apache-2.0" + +keywords = ["config", "configuration", "conf", "serde", "type-safe"] +categories = ["config"] +exclude = [".github"] + [features] default = ["toml", "yaml"] yaml = ["serde_yaml"] + [dependencies] confique-macro = { path = "macro" } serde = { version = "1", features = ["derive"] }