forked from reacherhq/check-if-email-exists
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
38 lines (32 loc) · 745 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
29
30
31
32
33
34
35
36
37
38
[package]
name = "check-if-email-exists-cli"
version = "0.8.24"
default-run = "check_if_email_exists"
edition = "2018"
description = "Check if an email address exists without sending any email."
authors = ["Amaury <amaurym10@protonmail.com>"]
license = "AGPL-3.0"
publish = false
[[bin]]
name = "check_if_email_exists"
path = "src/main.rs"
[dependencies]
check-if-email-exists = { path = "./core" }
clap = "3.0.0-beta.2"
env_logger = "0.9.0"
once_cell = "1.8.0"
serde = "1.0.126"
serde_json = "1.0.64"
[dependencies.hyper]
version = "0.14.10"
features = ["full"]
[dependencies.tokio]
version = "1.8.1"
features = ["macros", "net", "io-util", "rt-multi-thread"]
[profile.release]
lto = true
[workspace]
members = [
"core",
"test_suite"
]