2023-07-30 18:40:18 +02:00
|
|
|
[package]
|
2023-08-05 03:22:05 +02:00
|
|
|
name = "pay-respects"
|
2024-09-26 03:03:13 +02:00
|
|
|
version = "0.4.17"
|
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-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-09-25 17:55:55 +02:00
|
|
|
pay-respects-parser = "0.2.2"
|
|
|
|
|
|
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
|