pay-respects/core/Cargo.toml

43 lines
1.3 KiB
TOML
Raw Normal View History

2024-12-08 13:21:14 +01:00
[package]
name = "pay-respects"
authors = ["iff <iff@ik.me>"]
2025-03-13 21:39:15 +01:00
version = "0.6.14"
2024-12-08 13:21:14 +01:00
edition = "2021"
# for crates.io
2024-12-09 16:46:09 +01:00
description = "Command suggestions, command-not-found and thefuck replacement written in Rust"
2024-12-08 13:21:14 +01:00
homepage = "https://codeberg.org/iff/pay-respects"
repository = "https://github.com/iffse/pay-respects"
keywords = ["cli", "terminal", "utility", "shell"]
categories = ["command-line-utilities"]
2024-12-10 19:02:10 +01:00
license = "AGPL-3.0-or-later"
2024-12-08 13:21:14 +01:00
include = ["**/*.rs", "**/*.toml"]
[dependencies]
colored = "3"
2024-12-08 13:21:14 +01:00
sys-locale = "0.3"
rust-i18n = "3"
regex-lite = "0.1"
askama = "0.13"
2024-12-08 13:21:14 +01:00
2025-01-26 18:41:56 +01:00
inquire = "0.7"
2024-12-08 13:21:14 +01:00
2025-01-07 01:59:43 +01:00
pay-respects-parser = { version = "0.3", path = "../parser" }
pay-respects-utils = { version ="0.1", path = "../utils"}
2024-12-08 18:44:24 +01:00
[package.metadata.deb]
assets = [
["target/release/pay-respects", "usr/bin/", "755"],
2024-12-08 22:56:43 +01:00
["target/release/_pay-respects-module-100-runtime-rules", "usr/bin/", "755"],
["target/release/_pay-respects-fallback-100-request-ai", "usr/bin/", "755"],
2024-12-08 18:44:24 +01:00
]
2024-12-10 18:41:35 +01:00
priority = "optional"
section = "utils"
2024-12-14 20:11:04 +01:00
[package.metadata.generate-rpm]
assets = [
{ source = "target/release/pay-respects", dest = "/usr/bin/", mode = "755"},
{ source = "target/release/_pay-respects-module-100-runtime-rules", dest = "/usr/bin/", mode = "755"},
{ source = "target/release/_pay-respects-fallback-100-request-ai", dest = "/usr/bin/", mode = "755"},
]