fix cargo license part
This commit is contained in:
parent
af41359925
commit
9f027901a1
12
Cargo.toml
12
Cargo.toml
|
@ -2,10 +2,20 @@
|
||||||
name = "kwd"
|
name = "kwd"
|
||||||
version = "1.0.0"
|
version = "1.0.0"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
|
license = "MIT"
|
||||||
|
authors = ["Sangbum Kim <sangbumkim@amuz.es>"]
|
||||||
|
repository = "https://github.com/spi-ca/kwd"
|
||||||
|
include = [
|
||||||
|
"src/**/*",
|
||||||
|
"Cargo.toml",
|
||||||
|
"README.md",
|
||||||
|
"LICENSE"
|
||||||
|
]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
regex-lite = "^0.1"
|
regex-lite = "^0.1"
|
||||||
path-clean="^1.0"
|
path-clean = "^1.0"
|
||||||
|
|
||||||
[profile.release]
|
[profile.release]
|
||||||
lto = true # Enable Link Time Optimization
|
lto = true # Enable Link Time Optimization
|
||||||
codegen-units = 1 # Reduce number of codegen units to increase optimizations.
|
codegen-units = 1 # Reduce number of codegen units to increase optimizations.
|
||||||
|
|
Loading…
Reference in New Issue