enve 0.4.0

it helps you work with environment variables and convert it to any type using only type annotations
Documentation
1
2
3
4
5
6
7
8
9
10
use estring::SepVec;

const COMMA: char = ',';
const SEMI: char = ';';

/// Splits substring by comma character and returns ``SepVec``
pub type CommaVec<T> = SepVec<T, COMMA>;

/// Splits substring by semicolon character and returns ``SepVec``
pub type SemiVec<T> = SepVec<T, SEMI>;