fhc/Cargo.toml
2022-02-13 12:10:21 -05:00

32 lines
965 B
TOML

[package]
name = "fhc"
version = "0.6.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.16.1", features = ["full", "io-util"] }
futures = "0.3.21"
clap = "2.33.4"
reqwest = { version = "0.11.9", features = ["trust-dns", "rustls-tls", "native-tls"] }
openssl = { version = "0.10.38", features = ["vendored"] }
rand = "0.8.4"
# https://github.com/bluejekyll/trust-dns/pull/1632
[patch.crates-io]
trust-dns-resolver = { git = "https://github.com/Findomain/trust-dns", package = "trust-dns-resolver", branch = "custombranch" }
[profile.release]
lto = true
codegen-units = 1
panic = 'abort'
incremental = false
opt-level = "s"