mirror of
https://github.com/Hopiu/lychee.git
synced 2026-03-20 14:40:25 +00:00
18 lines
417 B
TOML
18 lines
417 B
TOML
[package]
|
|
name = "simple"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[[example]]
|
|
name = "simple"
|
|
path = "simple.rs"
|
|
|
|
[dependencies]
|
|
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"]
|