rust-selection-sort.kak/Cargo.toml
2022-03-12 18:29:47 -05:00

27 lines
576 B
TOML

# cargo-features = ["strip"]
[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 = {version = "1", path = "../../../git/rust-shellwords/"}
shellwords = "1"
rand = "0.8"
evalexpr = "7"
[profile.release]
lto = true
opt-level = "z"
strip = true
codegen-units = 1
panic = "abort"