diff --git a/Cargo.toml b/Cargo.toml index 2ea8a5a..f2dc8ef 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,9 +1,13 @@ [package] name = "micronfig" version = "0.1.0" +authors = ["Stefano Pigozzi "] edition = "2021" - -# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html +description = "Tiny Rust crate for twelve-factor app configuration" +repository = "https://github.com/Steffo99/micronfig/" +license = "MIT OR Apache-2.0" +keywords = ["12 factor app", "configuration", "config", "environment", "envvar"] +categories = ["config"] [dependencies] diff --git a/README.md b/README.md index 31a0025..7f81c64 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,15 @@ -# micronfig +# ![](icon.png) micronfig -Tiny Rust crate for twelve-factor app configuration +Tiny Rust crate for twelve-factor app configuration. + +## Links + +[![Crates.io](https://img.shields.io/crates/v/micronfig)](https://crates.io/crates/micronfig) + +[![Documentation](https://img.shields.io/docsrs/micronfig)](https://docs.rs/micronfig/latest/micronfig/) + +[![Chat](https://img.shields.io/matrix/micronfig:ryg.one?server_fqdn=matrix.ryg.one)](https://matrix.to/#/#micronfig:ryg.one) + +## Acknowledgements + +Icon made with [Font Awesome](https://fontawesome.com/) ([CC-BY-4.0](https://fontawesome.com/license/free)) and [Emblematic](https://github.com/Steffo99/emblematic/) \ No newline at end of file diff --git a/icon.png b/icon.png new file mode 100644 index 0000000..f7f63fa Binary files /dev/null and b/icon.png differ diff --git a/src/lib.rs b/src/lib.rs index eb5bd9e..c377819 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,4 +1,4 @@ -//! A tiny crate for [twelve-factor app configuration](https://12factor.net/config). +//! Tiny crate for [twelve-factor app configuration](https://12factor.net/config). //! //! # Goals //!