From 9f027901a106b928f1624ac81cacfdee52b0b461 Mon Sep 17 00:00:00 2001 From: Sangbum Kim Date: Tue, 4 Mar 2025 22:58:52 +0900 Subject: [PATCH] fix cargo license part --- Cargo.toml | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 751d019..86bc16c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,10 +2,20 @@ name = "kwd" version = "1.0.0" edition = "2021" +license = "MIT" +authors = ["Sangbum Kim "] +repository = "https://github.com/spi-ca/kwd" +include = [ + "src/**/*", + "Cargo.toml", + "README.md", + "LICENSE" +] [dependencies] regex-lite = "^0.1" -path-clean="^1.0" +path-clean = "^1.0" + [profile.release] lto = true # Enable Link Time Optimization codegen-units = 1 # Reduce number of codegen units to increase optimizations.