rust-selection-sort.kak/Cargo.toml

23 lines
448 B
TOML
Raw Normal View History

2022-01-22 16:29:02 -05:00
[package]
2022-02-11 23:27:51 -05:00
name = "kakutils-rs"
2022-01-22 16:29:02 -05:00
version = "0.1.0"
edition = "2021"
2022-01-23 21:28:31 -05:00
license = "MIT"
readme = "README.adoc"
keywords = ["cli", "kakoune"]
2022-01-22 16:29:02 -05:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
regex = "1"
2022-02-11 23:27:51 -05:00
clap = {version = "3", features = ["derive", "env"]}
2022-01-23 22:23:04 -05:00
alphanumeric-sort = "1"
2022-02-11 23:27:51 -05:00
shellwords = "1"
2022-01-22 23:16:12 -05:00
[profile.release]
lto = true
opt-level = "z"
2022-02-11 23:27:51 -05:00
strip = true
codegen-units = 1
panic = "abort"