From e5c5f6082e2da53f51f7513518e740ed8ee5468f Mon Sep 17 00:00:00 2001 From: nils <48135649+Nilstrieb@users.noreply.github.com> Date: Tue, 11 Apr 2023 12:30:48 +0200 Subject: [PATCH] config --- Cargo.toml | 6 ++++++ LICENSE => LICENSE-MIT | 0 2 files changed, 6 insertions(+) rename LICENSE => LICENSE-MIT (100%) 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