mirror of
https://github.com/Hopiu/lychee.git
synced 2026-03-20 14:40:25 +00:00
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.30"
|
|
tokio-stream = "0.1.14"
|
|
lychee-lib = { path = "../../lychee-lib", default-features = false }
|
|
tokio = { version = "1.35.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"]
|