mirror of
https://github.com/Hopiu/lychee.git
synced 2026-04-11 08:50:59 +00:00
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Matthias <matthias@endler.dev>
20 lines
475 B
TOML
20 lines
475 B
TOML
[package]
|
|
name = "client_pool"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[[example]]
|
|
name = "client_pool"
|
|
path = "client_pool.rs"
|
|
|
|
[dependencies]
|
|
futures = "0.3.31"
|
|
tokio-stream = "0.1.16"
|
|
lychee-lib = { path = "../../lychee-lib", default-features = false }
|
|
tokio = { version = "1.41.1", features = ["full"] }
|
|
|
|
[features]
|
|
email-check = ["lychee-lib/email-check"]
|
|
native-tls = ["lychee-lib/native-tls"]
|
|
rustls-tls = ["lychee-lib/rustls-tls"]
|
|
default = ["native-tls", "email-check"]
|