mirror of
https://github.com/Hopiu/lychee.git
synced 2026-04-22 14:04:46 +00:00
23 lines
556 B
TOML
23 lines
556 B
TOML
[package]
|
|
name = "benches"
|
|
version = "0.0.0"
|
|
authors = ["Matthias Endler <matthias@endler.dev>"]
|
|
license = "Apache-2.0/MIT"
|
|
description = "Criterion benchmarks of the lychee crates"
|
|
edition = "2021"
|
|
publish = false
|
|
|
|
[dependencies]
|
|
lychee-lib = { path = "../lychee-lib", default-features = false }
|
|
criterion = "0.5.1"
|
|
|
|
[features]
|
|
email-check = ["lychee-lib/email-check"]
|
|
native-tls = ["lychee-lib/native-tls"]
|
|
rustls-tls = ["lychee-lib/rustls-tls"]
|
|
default = ["native-tls", "email-check"]
|
|
|
|
[[bench]]
|
|
name = "extract"
|
|
path = "src/extract.rs"
|
|
harness = false
|