Updated Cargo.toml metadata

This commit is contained in:
Simon Johnston
2020-03-23 20:32:20 -07:00
parent db2e8bb60c
commit 1884ac0e4e
2 changed files with 17 additions and 3 deletions
+5
View File
@@ -0,0 +1,5 @@
.idea
/target
Cargo.lock
+12 -3
View File
@@ -2,17 +2,26 @@
name = "email_address"
version = "0.1.0"
authors = ["Simon Johnston <johnstonskj@gmail.com>"]
description = "Provides a new type for validation of email addresses"
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"]
[badges.travis-ci]
branch = "master"
repository = "johnstonskj/rust-email_address"
[features]
default = ["serde_support"]
serde_support = ["serde"]
[dependencies]
# Optional dependencies
serde = { optional = true, version = "1.0", features = ["derive"] }