[package] name = "check-tls-suites" version = "0.3.2" authors = ["Anthony J. Martinez "] edition = "2021" license = "MIT OR Apache-2.0" readme = "README.md" homepage = "https://github.com/anthonyjmartinez/check-tls-suites" repository = "https://github.com/anthonyjmartinez/check-tls-suites.git" description = "Displays TLS cipher suite names and recommendation status from IANA for a set of given ciphers" keywords = ["network", "CLI", "tools"] categories = ["command-line-utilities"] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] anyhow = "1.0" clap = { version = "3", features = ["cargo"] } csv = "1.1" hex = "0.4" reqwest = { version = "0.11", features = ["blocking"] } serde = { version = "1", features = ["derive"] } [profile.release] panic = "abort" lto = true opt-level = 'z' strip = true