mirror of
https://github.com/TECHNOFAB11/pay-respects.git
synced 2026-02-02 15:45:11 +01:00
chore: clean
This commit is contained in:
parent
c354fe014e
commit
0f59deeb64
3 changed files with 3 additions and 3 deletions
|
|
@ -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"]
|
||||||
|
|
|
||||||
|
|
@ -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!
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -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 {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue