2022-06-04 23:45:05 -04:00
|
|
|
# syntax = denzp/cargo-wharf-frontend
|
|
|
|
|
2022-03-07 21:57:27 -05:00
|
|
|
# cargo-features = ["strip"]
|
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
|
|
|
|
2022-06-04 23:45:05 -04:00
|
|
|
[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"
|
|
|
|
|
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"
|
2023-05-17 21:36:14 -04:00
|
|
|
clap = { version = "4", features = ["derive", "env"] }
|
2022-01-23 22:23:04 -05:00
|
|
|
alphanumeric-sort = "1"
|
2022-03-12 18:29:47 -05:00
|
|
|
# shellwords = {version = "1", path = "../../../git/rust-shellwords/"}
|
2022-09-07 18:52:30 -04:00
|
|
|
# shellwords = "1"
|
2022-02-21 17:23:34 -05:00
|
|
|
rand = "0.8"
|
2022-03-06 21:29:15 -05:00
|
|
|
evalexpr = "7"
|
2022-06-04 23:45:05 -04:00
|
|
|
kakplugin = {path = "./kakplugin/"}
|
2022-06-06 18:01:49 -04:00
|
|
|
linked-hash-map = "0.5.4"
|
|
|
|
linked_hash_set = "0.1.4"
|
2022-07-06 22:11:41 -04:00
|
|
|
strum_macros = "0.24"
|
|
|
|
strum = { version = "0.24", features = ["derive"] }
|
2023-05-17 21:36:14 -04:00
|
|
|
itertools = "0.10.5"
|
|
|
|
either = "1.8.1"
|
2024-10-30 20:41:58 -04:00
|
|
|
duct = "0.13.7"
|
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"
|
2023-05-19 23:52:06 -04:00
|
|
|
debug = true
|