chore: clean

This commit is contained in:
iff 2024-11-19 17:02:46 +01:00
parent c354fe014e
commit 0f59deeb64
3 changed files with 3 additions and 3 deletions

View file

@ -4,7 +4,7 @@ version = "0.5.6"
edition = "2021" edition = "2021"
# for crates.io # for crates.io
description = "Terminal command correction, alternative to thefuck written in Rust" description = "Terminal command correction, alternative to thefuck written in Rust with AI support"
homepage = "https://codeberg.org/iff/pay-respects" homepage = "https://codeberg.org/iff/pay-respects"
repository = "https://github.com/iffse/pay-respects" repository = "https://github.com/iffse/pay-respects"
keywords = ["cli", "terminal", "utility", "shell"] keywords = ["cli", "terminal", "utility", "shell"]

View file

@ -6,7 +6,7 @@ Typed a wrong command? Pay Respects will try to correct your wrong console comma
- ✏️ **Easy to write rules**: You don't need to know Rust. The rules are written in a TOML file that is simple to work with and can be evaluated to Rust code upon compilation! Optional runtime user defined rules can be enabled starting from 0.5! - ✏️ **Easy to write rules**: You don't need to know Rust. The rules are written in a TOML file that is simple to work with and can be evaluated to Rust code upon compilation! Optional runtime user defined rules can be enabled starting from 0.5!
- 🎯 **Accurate results**: Suggestions must pass several conditions in order to be prompted to the user, no `sudo` suggestions when you are using `doas`! - 🎯 **Accurate results**: Suggestions must pass several conditions in order to be prompted to the user, no `sudo` suggestions when you are using `doas`!
- 🤖 **AI Support**: AI comes in aid when there is no rule for your error! - 🤖 **AI Support**: AI comes in aid when there is no rule for your error!
- 🪶 **Tiny binary size**: Not even 1MB! - 🪶 **Tiny binary size**: Not even 1MB! Even with all features, it's less than 3MB!
![pacman-fix](img/pacman-fix.png) ![pacman-fix](img/pacman-fix.png)

View file

@ -2,7 +2,7 @@ use std::collections::HashMap;
use reqwest::blocking::Client; use reqwest::blocking::Client;
use serde::{Deserialize, Serialize}; use serde::{Deserialize, Serialize};
use serde_json::{Result, Value}; use serde_json::Value;
#[derive(Serialize, Deserialize)] #[derive(Serialize, Deserialize)]
struct Input { struct Input {