-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
28 lines (25 loc) · 833 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
[package]
name = "serde-email"
version = "3.1.0"
edition = "2021"
license = "MIT"
description = "A validating email type that can be serialised using Serde"
keywords = ["email", "email_address", "validation", "serde", "serialization"]
categories = ["email", "encoding"]
authors = ["[email protected] <[email protected]>"]
repository = "https://github.com/JosephLenton/serde-email"
readme = "README.md"
documentation = "https://docs.rs/serde-email/latest/serde-email"
[features]
default = ["serde"]
all = ["default", "serde", "sea-orm"]
serde = ["dep:serde"]
sea-orm = ["dep:sea-orm"]
[dependencies]
email_address = "0.2.9"
sea-orm = { version = "1.0", optional = true }
serde = { version = "1.0", optional = true }
[dev-dependencies]
serde_json = "1.0"
sea-orm = "1.0"
serde = { version = "1.0", features = ["derive"] }