forked from reacherhq/check-if-email-exists
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
39 lines (33 loc) · 805 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
39
[package]
name = "check-if-email-exists-cli"
version = "0.8.25"
default-run = "check_if_email_exists"
edition = "2018"
description = "Check if an email address exists without sending any email."
authors = ["Amaury <[email protected]>"]
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.4"
env_logger = "0.9.0"
once_cell = "1.8.0"
openssl = { version = "0.10.36", features = ["vendored"] }
serde = "1.0.130"
serde_json = "1.0.68"
[dependencies.hyper]
version = "0.14.14"
features = ["full"]
[dependencies.tokio]
version = "1.12.0"
features = ["macros", "net", "io-util", "rt-multi-thread"]
[profile.release]
lto = true
[workspace]
members = [
"core",
"test_suite"
]