Email type

Email type for approach suggested by Alexis King - "Parse, don't validate".

How to use:

Add dependency:

toml email-type-rs = { git = "https://github.com/lebe-dev/email-type-rs", version = "1.0.0", features = ["utils"] }

Use:

```rust let email = Email::from_str("lexi.lambda@gmail.com")?; let email = "lexi.lambda@gmail.com".parse()?;

// fn somefunc(value: &str) somefunc(email.asstr()); somefunc(&email); ```

Util functions

Add to Cargo.toml:

toml [dev-dependencies] email-type-rs = { git = "https://github.com/lebe-dev/email-type-rs", version = "1.0.0", features = ["utils"] }

Functions:

Thanks