-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
31 lines (29 loc) · 940 Bytes
/
Copy pathCargo.toml
File metadata and controls
31 lines (29 loc) · 940 Bytes
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
[package]
name = "shelldon"
version = "0.1.0"
edition = "2021"
authors = ["Douglas Mendez <douglasmakey@gmail.com>"]
description = "Shelldon is your new Rust-powered buddy with GPT features!"
readme = "README.md"
license = "MIT"
repository = "https://github.com/douglasmakey/shelldon"
keywords = ["shell", "gpt", "ai"]
categories = ["development-tools", "text-processing", "command-line-utilities"]
exclude = [
".github",
"assets",
]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
async-stream = "0.3.5"
clap = { version = "4.5.4", features = ["derive"] }
comfy-table = "7.1.1"
derive_more = { version = "2.1.1", features = ["from", "display"] }
dialoguer = "0.12.0"
dirs = "6.0.0"
futures = "0.3.30"
regex = "1.10.4"
serde = { version = "1.0.203", features = ["derive"] }
serde_json = "1.0.117"
tokio = { version = "1.38.0", features = ["full"] }
genai = "=0.5.3"