fhc/Cargo.toml
Edu4rdSHL 212152222c
Split functions across modules.
Optimize performance using trust-dns-resolver for DNS caching.

Signed-off-by: Edu4rdSHL <edu4rdshl@protonmail.com>
2022-02-13 05:50:20 -05:00

28 lines
No EOL
763 B
TOML

[package]
name = "fhc"
version = "0.5.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.6.0", features = ["full", "io-util"] }
futures = "0.3.15"
clap = "2.33.3"
reqwest = { version = "0.11.3", features = ["trust-dns", "rustls-tls", "native-tls"] }
openssl = { version = "0.10.34", features = ["vendored"] }
rand = "0.8.3"
[profile.release]
lto = true
codegen-units = 1
panic = 'abort'
incremental = false
opt-level = "s"