[package] name = "shad3" version = "1.1.51" edition = "2021" authors = ["Alex Goven <7thhexangel@gmail.com>"] description = "App for hashing entries in blocklists" license = "GPL-3.0" repository = "https://github.com/styromaniac/shad3" documentation = "https://docs.rs/shad3" homepage = "https://github.com/styromaniac/shad3" readme = "README.md" keywords = ["hash", "blocklist", "security"] categories = ["command-line-utilities", "cryptography"] [dependencies] anyhow = "1.0.75" rayon = "1.7.0" reqwest = { version = "0.11.20", default-features = false, features = ["rustls-tls", "stream"] } sha3 = "0.10.8" tokio = { version = "1.32.0", features = ["rt-multi-thread", "macros"] } regex = "1.9.5" indicatif = "0.17.7" hex = "0.4.3" uuid = { version = "1.7.0", features = ["v4"] } [profile.release] opt-level = 3 lto = true codegen-units = 1 strip = true debug = false [[bin]] name = "shad3" path = "src/main.rs"