26 lines
505 B
TOML
26 lines
505 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 = "1"
|
|
rand = "0.8"
|
|
evalexpr = "7"
|
|
|
|
[profile.release]
|
|
lto = true
|
|
opt-level = "z"
|
|
strip = true
|
|
codegen-units = 1
|
|
panic = "abort"
|