2022-07-22 15:05:10 +03:00
|
|
|
|
# enve
|
2022-07-18 14:36:24 +03:00
|
|
|
|
|
2022-07-22 15:05:10 +03:00
|
|
|
|
[![CI](https://github.com/pleshevskiy/enve/actions/workflows/ci.yml/badge.svg?branch=main)](https://github.com/pleshevskiy/enve/actions/workflows/ci.yml)
|
2020-11-12 10:45:06 +03:00
|
|
|
|
[![unsafe forbidden](https://img.shields.io/badge/unsafe-forbidden-success.svg)](https://github.com/rust-secure-code/safety-dance/)
|
2022-07-22 15:05:10 +03:00
|
|
|
|
[![Documentation](https://docs.rs/pleshevskiy/badge.svg)](https://docs.rs/enve)
|
|
|
|
|
[![Crates.io](https://img.shields.io/crates/v/enve)](https://crates.io/crates/enve)
|
|
|
|
|
![Crates.io](https://img.shields.io/crates/l/enve)
|
2019-12-24 19:37:55 +03:00
|
|
|
|
|
2022-07-24 18:53:04 +03:00
|
|
|
|
`enve` helps you work with environment variables and convert it to **any type**
|
|
|
|
|
using only **type annotations**.
|
2019-12-23 15:24:36 +03:00
|
|
|
|
|
2022-07-24 18:53:04 +03:00
|
|
|
|
Look at the [examples](https://github.com/pleshevskiy/enve/tree/main/examples)
|
|
|
|
|
to see the power!
|
2019-12-23 15:24:36 +03:00
|
|
|
|
|
2022-07-24 18:53:04 +03:00
|
|
|
|
All standard environment variable types are included, but `enve` under the hood
|
|
|
|
|
uses [estring](https://github.com/pleshevskiy/estring), so you can easily create
|
|
|
|
|
your own type.
|
2020-01-10 08:23:06 +03:00
|
|
|
|
|
2022-07-24 18:53:04 +03:00
|
|
|
|
## Getting started
|
|
|
|
|
|
|
|
|
|
```rust
|
|
|
|
|
use enve::SepVec;
|
|
|
|
|
|
|
|
|
|
type MinusVec<T> = SepVec<T, '-'>;
|
|
|
|
|
type PlusVec<T> = SepVec<T, '+'>;
|
|
|
|
|
type MulVec<T> = SepVec<T, '*'>;
|
|
|
|
|
|
|
|
|
|
fn main() -> Result<(), enve::Error> {
|
|
|
|
|
enve::sset("E", "10+5*2-3");
|
|
|
|
|
|
|
|
|
|
let res: f32 = enve::get::<PlusVec<MinusVec<MulVec<f32>>>>("E")
|
|
|
|
|
.unwrap()
|
|
|
|
|
.iter()
|
|
|
|
|
.map(|p| {
|
|
|
|
|
p.iter()
|
|
|
|
|
.map(|m| m.iter().product::<f32>())
|
|
|
|
|
.reduce(|acc, v| acc - v)
|
|
|
|
|
.unwrap_or_default()
|
|
|
|
|
})
|
|
|
|
|
.sum::<f32>();
|
|
|
|
|
|
|
|
|
|
println!("result: {}", res);
|
|
|
|
|
|
|
|
|
|
Ok(())
|
|
|
|
|
}
|
|
|
|
|
```
|
2020-01-10 08:23:06 +03:00
|
|
|
|
|
2020-03-12 23:20:34 +03:00
|
|
|
|
## Installation
|
|
|
|
|
|
2022-07-24 18:56:24 +03:00
|
|
|
|
The MSRV is 1.51.0
|
2020-03-12 23:20:34 +03:00
|
|
|
|
|
2022-07-24 18:53:04 +03:00
|
|
|
|
Add `enve = { version = "0.1", features = ["prim", "vec"] }` as a dependency in
|
2022-07-18 14:36:24 +03:00
|
|
|
|
`Cargo.toml`.
|
2020-03-12 23:20:34 +03:00
|
|
|
|
|
|
|
|
|
`Cargo.toml` example:
|
|
|
|
|
|
|
|
|
|
```toml
|
|
|
|
|
[package]
|
|
|
|
|
name = "my-crate"
|
|
|
|
|
version = "0.1.0"
|
|
|
|
|
authors = ["Me <user@rust-lang.org>"]
|
|
|
|
|
|
|
|
|
|
[dependencies]
|
2022-07-24 18:53:04 +03:00
|
|
|
|
enve = { version = "0.1", features = ["prim", "vec"] }
|
2020-03-12 23:20:34 +03:00
|
|
|
|
```
|
|
|
|
|
|
2019-12-24 19:37:55 +03:00
|
|
|
|
## License
|
|
|
|
|
|
2022-07-24 18:53:04 +03:00
|
|
|
|
**MIT**. See [LICENSE](https://github.com/pleshevskiy/estring/LICENSE) to see
|
|
|
|
|
the full text.
|
2019-12-24 19:37:55 +03:00
|
|
|
|
|
|
|
|
|
## Contributors
|
|
|
|
|
|
2022-07-18 14:36:24 +03:00
|
|
|
|
[pleshevskiy](https://github.com/pleshevskiy) (Dmitriy Pleshevskiy) – creator,
|
|
|
|
|
maintainer.
|