-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
49 lines (45 loc) · 1.3 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
[package]
name = "shellchat"
version = "1.0.39"
edition = "2021"
authors = ["Eugen Eisler <[email protected]>"]
description = "Transforms natural language into shell commands for execution or explanation."
license = "MIT"
homepage = "https://github.com/eugeis/shellchat"
repository = "https://github.com/eugeis/shellchat"
categories = ["command-line-utilities"]
keywords = ["chatgpt", "llm", "cli", "gpt", "copilot"]
readme = "README.md"
[dependencies]
actix-web = "4" # or the latest version you prefer
serde = { version = "1", features = ["derive"] }
serde_json = "1"
reqwest = { version = "0.12.5", features = ["json", "blocking"] }
clap = { version = "4.5.16", features = ["env", "derive"] }
serde_yaml = "0.9"
anyhow = "1.0.86"
async-trait = "0.1.81"
lazy_static = "1.5.0"
fancy-regex = "0.13.0"
log = "0.4.20"
inquire = "0.7.5"
async-recursion = "1.1.1"
tokio = { version = "1.34.0", features = ["rt", "time", "macros", "signal", "rt-multi-thread"] }
crossterm = "0.28.1"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
tracing-appender = "0.2"
thiserror = "1.0.63"
futures = "0.3.30"
actix-rt = "2"
termimad = "0.30.0"
clipboard = "0.5"
[lib]
name = "shc_lib"
path = "src/lib/mod.rs"
[[bin]]
name = "shc-serve"
path = "src/bin/sch-serve.rs"
[[bin]]
name = "shc"
path = "src/bin/sch.rs"