2023-07-30 18:40:18 +02:00
|
|
|
[package]
|
2023-08-05 03:22:05 +02:00
|
|
|
name = "pay-respects"
|
2024-11-15 21:17:11 +01:00
|
|
|
version = "0.5.1"
|
2023-07-30 18:40:18 +02:00
|
|
|
edition = "2021"
|
|
|
|
|
|
2024-09-18 16:06:53 +02:00
|
|
|
# for crates.io
|
|
|
|
|
description = "Terminal command correction, alternative to thefuck written in Rust"
|
2024-09-18 23:29:51 +02:00
|
|
|
repository = "https://github.com/iffse/pay-respects"
|
2024-09-18 16:06:53 +02:00
|
|
|
keywords = ["cli", "terminal", "utility", "shell"]
|
|
|
|
|
categories = ["command-line-utilities"]
|
|
|
|
|
license = "AGPL-3.0"
|
|
|
|
|
include = [
|
|
|
|
|
"**/*.rs",
|
|
|
|
|
"**/*.toml",
|
|
|
|
|
]
|
|
|
|
|
|
2023-07-30 18:40:18 +02:00
|
|
|
[dependencies]
|
|
|
|
|
colored = "2.0"
|
2024-11-13 16:31:31 +01:00
|
|
|
sys-locale = "0.3.2"
|
2024-09-25 17:55:55 +02:00
|
|
|
rust-i18n = "3"
|
2023-08-01 19:35:22 +02:00
|
|
|
regex-lite = "0.1"
|
2023-08-02 03:05:25 +02:00
|
|
|
|
2024-11-15 15:43:04 +01:00
|
|
|
toml = { version = "0.7", optional = true }
|
|
|
|
|
serde = { version = "1.0", features = ["derive"], optional = true }
|
|
|
|
|
|
|
|
|
|
pay-respects-parser = "0.2.3"
|
|
|
|
|
# pay-respects-parser = { path = "../pay-respects-parser" }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
[features]
|
|
|
|
|
runtime-rules = ["dep:serde", "dep:toml"]
|
2024-09-25 17:55:55 +02:00
|
|
|
|
2023-08-02 03:05:25 +02:00
|
|
|
[profile.release]
|
|
|
|
|
strip = true
|
2023-08-06 00:33:08 +02:00
|
|
|
codegen-units = 1
|
|
|
|
|
lto = true
|