refactor: separate rule parser to another repo

This commit is contained in:
iff 2024-09-18 16:06:53 +02:00
parent becb692db0
commit 006e198240
6 changed files with 13 additions and 485 deletions

View file

@ -3,9 +3,20 @@ name = "pay-respects"
version = "0.4.13"
edition = "2021"
# for crates.io
description = "Terminal command correction, alternative to thefuck written in Rust"
repository = "https://github.com/iffse/pay-respects-parser"
keywords = ["cli", "terminal", "utility", "shell"]
categories = ["command-line-utilities"]
license = "AGPL-3.0"
include = [
"**/*.rs",
"**/*.toml",
]
[dependencies]
colored = "2.0"
rule_parser = { path = "rule_parser" }
pay-respects-parser = "0.2.2"
regex-lite = "0.1"
[profile.release]