From 03c3403431bc637da75d28a6d590117650c296c5 Mon Sep 17 00:00:00 2001 From: R4yan Date: Sat, 17 Oct 2020 18:26:10 +0200 Subject: [PATCH] Update Cargo.toml --- Cargo.toml | 19 +++++++++++++++---- 1 file changed, 15 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index d8c91eb..1667e64 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,11 +1,22 @@ [package] -name = "StegBrute" -version = "0.1.0" +name = "stegbrute" +version = "0.1.1" authors = ["R4yGM "] edition = "2018" -# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html +license = "MIT OR Apache-2.0" +description = "Steganography brute-force tool" +readme = "README.md" +homepage = "https://github.com/R4yGM/StegBrute" +repository = "https://github.com/R4yGM/StegBrute" +keywords = ["steg","steghide","steganography","brute-force","decrypt"] + +[profile.dev] +opt-level = 1 + +[profile.release] +opt-level = 3 [dependencies] structopt = { version = "0.3", features = [ "paw" ] } -paw = "1.0" \ No newline at end of file +paw = "1.0"