mirror of
https://github.com/reacherhq/check-if-email-exists.git
synced 2026-09-11 00:01:00 +00:00
Bumps [tokio](https://github.com/tokio-rs/tokio) from 1.28.2 to 1.29.1. - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.28.2...tokio-1.29.1) --- updated-dependencies: - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
30 lines
737 B
TOML
30 lines
737 B
TOML
[package]
|
|
name = "check-if-email-exists-cli"
|
|
version = "0.9.1"
|
|
default-run = "check_if_email_exists"
|
|
edition = "2018"
|
|
description = "Check if an email address exists without sending any email."
|
|
authors = ["Amaury <amaury@reacher.email>"]
|
|
license = "AGPL-3.0"
|
|
publish = false
|
|
|
|
[[bin]]
|
|
name = "check_if_email_exists"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
check-if-email-exists = { path = "../core", features = ["headless"] }
|
|
clap = { version = "3.2", features = ["derive", "env"] }
|
|
env_logger = "0.10"
|
|
once_cell = "1.18"
|
|
openssl = { version = "0.10", features = ["vendored"] }
|
|
serde = "1.0"
|
|
serde_json = "1.0"
|
|
|
|
[dependencies.tokio]
|
|
version = "1.29.1"
|
|
features = ["macros", "net", "io-util", "rt-multi-thread"]
|
|
|
|
[profile.release]
|
|
lto = true
|