2023-07-30 18:40:18 +02:00
|
|
|
[package]
|
2023-08-05 03:22:05 +02:00
|
|
|
name = "pay-respects"
|
2024-11-20 21:18:16 +01:00
|
|
|
version = "0.5.11"
|
2023-07-30 18:40:18 +02:00
|
|
|
edition = "2021"
|
|
|
|
|
|
2024-09-18 16:06:53 +02:00
|
|
|
# for crates.io
|
2024-11-19 18:45:19 +01:00
|
|
|
description = "Terminal command suggestion, alternative to thefuck written in Rust with AI support"
|
2024-11-16 15:54:42 +01:00
|
|
|
homepage = "https://codeberg.org/iff/pay-respects"
|
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-18 20:45:02 +01:00
|
|
|
toml = { version = "0.8", optional = true }
|
2024-11-19 14:59:15 +01:00
|
|
|
serde_json = { version = "1.0", optional = true }
|
2024-11-15 15:43:04 +01:00
|
|
|
serde = { version = "1.0", features = ["derive"], optional = true }
|
2024-11-19 14:59:15 +01:00
|
|
|
reqwest = { version = "0.12", features = ["blocking", "json"], optional = true }
|
2024-11-19 21:16:34 +01:00
|
|
|
textwrap = { version = "0.16", features = ["terminal_size"], optional = true}
|
2024-11-15 15:43:04 +01:00
|
|
|
|
2024-11-20 22:25:52 +01:00
|
|
|
pay-respects-parser = "0.2.6"
|
2024-11-15 15:43:04 +01:00
|
|
|
# pay-respects-parser = { path = "../pay-respects-parser" }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
[features]
|
|
|
|
|
runtime-rules = ["dep:serde", "dep:toml"]
|
2024-11-19 21:16:34 +01:00
|
|
|
request-ai = ["dep:serde", "dep:serde_json", "dep:reqwest", "dep:textwrap"]
|
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
|