Add metadata to Cargo.toml

This commit is contained in:
Lukas Kalbertodt
2021-07-28 12:09:04 +02:00
parent b7515239e5
commit e35be71665

View File

@@ -4,11 +4,22 @@ version = "0.1.0"
authors = ["Lukas Kalbertodt <lukas.kalbertodt@gmail.com>"]
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"] }