lychee/examples/chain/Cargo.toml
dependabot[bot] a11d51549b
Bump the dependencies group with 3 updates (#1604)
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-01-06 14:07:53 +01: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.84"
lychee-lib = { path = "../../lychee-lib", default-features = false }
reqwest = "0.12.9"
tokio = { version = "1.42.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"]