mirror of
https://github.com/Steffo99/micronfig.git
synced 2024-11-21 15:44:20 +00:00
Prepare crate for distribution
This commit is contained in:
parent
1bd3d63812
commit
777188f9ac
4 changed files with 21 additions and 5 deletions
|
@ -1,9 +1,13 @@
|
||||||
[package]
|
[package]
|
||||||
name = "micronfig"
|
name = "micronfig"
|
||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
|
authors = ["Stefano Pigozzi <me@steffo.eu>"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
|
description = "Tiny Rust crate for twelve-factor app configuration"
|
||||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
repository = "https://github.com/Steffo99/micronfig/"
|
||||||
|
license = "MIT OR Apache-2.0"
|
||||||
|
keywords = ["12 factor app", "configuration", "config", "environment", "envvar"]
|
||||||
|
categories = ["config"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
|
|
||||||
|
|
16
README.md
16
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/)
|
BIN
icon.png
Normal file
BIN
icon.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 7.4 KiB |
|
@ -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
|
//! # Goals
|
||||||
//!
|
//!
|
||||||
|
|
Loading…
Reference in a new issue