-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
27 lines (24 loc) · 1.03 KB
/
Cargo.toml
File metadata and controls
27 lines (24 loc) · 1.03 KB
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
[package]
name = "mailboxvalidator"
version = "1.1.1"
authors = ["MailboxValidator <support@mailboxvalidator.com>"]
edition = "2021"
description = "Email verification package for Rust using MailboxValidator API. It validates if the email is valid, from a free provider, contains high-risk keywords, whether it's a catch-all address and so much more."
documentation = "https://docs.rs/mailboxvalidator"
readme = "readme.md"
homepage = "https://github.com/MailboxValidator/mailboxvalidator-rust"
repository = "https://github.com/MailboxValidator/mailboxvalidator-rust/"
license = "MIT"
license-file = "LICENSE.txt"
keywords = ["email", "validation", "validator", "free", "disposable"]
categories = ["email", "accessibility"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
reqwest = { version = "0.11", features = ["blocking", "json"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_with = "1.6.0"
[lib]
name = "mailboxvalidator"
path = "src/lib.rs"
doc = true