-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
34 lines (31 loc) · 951 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
[package]
name = "ask"
version = "2.0.0"
edition = "2021"
description = "Ask tries to understand what shell you're using and then fetches a command specifically for that shell based on your natural language input using ChatGPT."
homepage = "https://damoonrashidi/ask"
license-file = "LICENSE"
keywords = ["shell", "ai", "prompt"]
categories = ["command-line-utilities"]
[dependencies]
anyhow = "1.0.79"
crossterm = "0.28.1"
futures-util = "0.3.31"
reqwest = { version = "0.12.11", features = ["json", "stream"] }
serde = { version = "1.0.195", features = ["derive"] }
serde_json = "1.0.111"
serde_toml = "0.0.1"
simple-home-dir = "0.4.5"
tokio = { version = "1.42.0", features = ["full"] }
toml = "0.8.8"
[lints.clippy]
all = "deny"
pedantic = "deny"
[lints.rust]
unsafe_code = "deny"
dead_code = "deny"
unused_variables = "deny"
unused_imports = "deny"
unused_import_braces = "deny"
missing_debug_implementations = "deny"
unreachable_pub = "deny"