lychee/examples/chain/Cargo.toml
Thomas Zahner 25a3eb1a3a
Chain visibility (#1415)
* Make chain public
* Make function on chain public
* Add must_use attribute
* Make RequestChain type public
* Add chain usage example
2024-04-25 15:31:03 +02:00

20 lines
456 B
TOML

[package]
name = "chain"
version = "0.1.0"
edition = "2021"
[[example]]
name = "chain"
path = "chain.rs"
[dependencies]
async-trait = "0.1.80"
lychee-lib = { path = "../../lychee-lib", default-features = false }
reqwest = "0.12.4"
tokio = { version = "1.37.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"]