rust-selection-sort.kak/Cargo.toml
2022-06-04 23:45:05 -04:00

49 lines
1014 B
TOML

# syntax = denzp/cargo-wharf-frontend
# cargo-features = ["strip"]
[package]
name = "kakutils-rs"
version = "0.1.0"
edition = "2021"
license = "MIT"
readme = "README.adoc"
keywords = ["cli", "kakoune"]
[workspace]
members = [
".",
"./kakplugin/",
]
[[package.metadata.wharf.binary]]
name = "kakutils-rs"
destination = "/bin/kakutils-rs"
[package.metadata.wharf.builder]
# image = "rust"
# image = "ekidd/rust-musl-builder"
image = "clux/muslrust:nightly-2021-03-02"
target = "x86_64-unknown-linux-musl"
[package.metadata.wharf.output]
image = "scratch"
# 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"
kakplugin = {path = "./kakplugin/"}
[profile.release]
lto = true
opt-level = "z"
strip = true
codegen-units = 1
panic = "abort"