diff --git a/Cargo.toml b/Cargo.toml index 15b5b15..6e8360d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -6,10 +6,16 @@ exclude = ["test-cases/*", "full-tests/*"] name = "cargo-minimize" version = "0.1.0" edition = "2021" +categories = ["development-tools"] description = "A tool for minimizing rustc ICEs" +keywords = ["minimization", "ICE", "rust-development"] +license = "MIT OR Apache-2.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html +[profile.release] +lto = "thin" + [dependencies] anyhow = "1.0.65" clap = { version = "4.0.29", features = ["derive"] } diff --git a/LICENSE b/LICENSE-MIT similarity index 100% rename from LICENSE rename to LICENSE-MIT