fhc/Cargo.toml
2024-03-17 20:49:43 -05:00

29 lines
812 B
TOML

[package]
name = "fhc"
version = "0.7.1"
authors = ["Eduard Tolosa <edu4rdshl@protonmail.com>"]
edition = "2018"
description = "Fast HTTP Checker."
repository = "https://github.com/edu4rdshl/fhc"
license = "GPL-3.0-or-later"
keywords = ["http", "https", "http-checker"]
readme = "README.md"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
tokio = { version = "1.36.0", features = ["full", "io-util"] }
futures = "0.3.30"
clap = "2.34.0"
reqwest = { version = "0.11.24", features = ["trust-dns", "rustls-tls", "native-tls"] }
openssl = { version = "0.10.64", features = ["vendored"] }
rand = "0.8.5"
scraper = "0.19.0"
async-recursion = "1.0.5"
[profile.release]
lto = 'thin'
codegen-units = 1
panic = 'abort'
incremental = false
opt-level = "s"