Files
Simon Johnston b3e5205b4e
Rust / build (macos-latest) (push) Has been cancelled
Rust / build (ubuntu-latest) (push) Has been cancelled
Security audit / security_audit (push) Has been cancelled
Rust / build (windows-latest) (push) Has been cancelled
Version 0.2.3
2022-08-09 08:24:49 -07:00

23 lines
664 B
TOML

[package]
name = "email_address"
version = "0.2.3"
authors = ["Simon Johnston <johnstonskj@gmail.com>"]
description = "A Rust crate providing an implementation of an RFC-compliant `EmailAddress` newtype. "
documentation = "https://docs.rs/email_address/"
repository = "https://github.com/johnstonskj/rust-email_address.git"
edition = "2018"
license = "MIT"
readme = "README.md"
publish = true
[package.metadata.docs.rs]
# This only builds a single target for documentation.
targets = ["x86_64-unknown-linux-gnu"]
[features]
default = ["serde_support"]
serde_support = ["serde"]
[dependencies]
serde = { optional = true, version = "1.0", features = ["derive"] }