rust-selection-sort.kak/Cargo.toml
2022-02-21 17:23:34 -05:00

24 lines
461 B
TOML

[package]
name = "kakutils-rs"
version = "0.1.0"
edition = "2021"
license = "MIT"
readme = "README.adoc"
keywords = ["cli", "kakoune"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
regex = "1"
clap = {version = "3", features = ["derive", "env"]}
alphanumeric-sort = "1"
shellwords = "1"
rand = "0.8"
[profile.release]
lto = true
opt-level = "z"
strip = true
codegen-units = 1
panic = "abort"