lychee/examples/client_pool/Cargo.toml
Jakob 63cdb70e6d
Upgrade to 2024 edition (#1711)
* Upgrade to 2024 edition

* Revert expr_2021 -> expr

* resolve merge conflicts

* make lint happy
2025-05-24 18:23:23 +02:00

20 lines
475 B
TOML

[package]
name = "client_pool"
version = "0.1.0"
edition = "2024"
[[example]]
name = "client_pool"
path = "client_pool.rs"
[dependencies]
futures = "0.3.31"
tokio-stream = "0.1.17"
lychee-lib = { path = "../../lychee-lib", default-features = false }
tokio = { version = "1.45.0", 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"]