-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
37 lines (30 loc) · 1.06 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
[package]
name = "shai"
version = "0.2.0"
edition = "2021"
authors = ["jonboh"]
description = "A shell AI assistant"
homepage = "https://github.com/jonboh/shai"
repository = "https://github.com/jonboh/shai"
license = "MIT"
keywords = ["cli", "AI", "LLM", "assistant"]
categories = ["command-line-utilities"]
exclude = ["assets/*"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
clap = { version = "4.3", features = ["derive"] }
serde = { version = "1.0", features = ["derive"] }
serde_yaml = "0.9.22"
serde_json = "1.0"
reqwest = {version = "0.11", features = ["json", "stream"]}
eventsource-stream = { version = "0.2.3" }
futures = { version = "0.3.28" }
futures-util = { version = "0.3.28" }
bytes = "1.4"
ratatui = { version = "0.22.0", features = ["all-widgets"]}
tui-input = "0.8"
crossterm = {version = "0.27", features = ["event-stream"]}
tokio = {version = "1.29", features = ["rt", "rt-multi-thread", "macros"]}
thiserror = {version = "1.0"}
regex = {version = "1.9"}
lazy_static = {version = "1.4"}