[package] name = "git2mail" version = "0.4.3" authors = ["exti0p"] edition = "2021" license = "LGPL-3.0-only" description = "Pure Rust OSINT tool to find a GitHub user's email" repository = "https://github.com/exti0p/git2mail" readme = "README.md" keywords = ["github", "osint", "rust", "leak"] categories = ["command-line-utilities"] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] clap = "4.5.9" itertools = "0.13.0" openssl = { version = "0.10.64", features = ["vendored"] } regex = "1.10.5" reqwest = { version = "0.12.5", features = ["blocking", "json"] } serde = { version = "1.0.204", features = ["derive"] } serde_json = "1.0.120" # logging log = "0.4.22" pretty_env_logger = "0.5.0" [profile.release] opt-level = "z" # Optimize for size lto = true # Enable Link Time Optimization codegen-units = 1 # Reduce number of codegen units to increase optimizations panic = "abort" # Abort on panic strip = true # Automatically strip symbols from the binary