-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
23 lines (22 loc) · 825 Bytes
/
Cargo.toml
File metadata and controls
23 lines (22 loc) · 825 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
[package]
edition = "2024"
name = "nelson"
version = "0.0.1"
authors = ["Vicente Figueiredo <vicenteppfigueiredo@gmail.com>"]
exclude = ["target", "*.rs.bk", ".github",]
description = "small cli AI assistant that generates shell commands, explains errors, and answers programming questions."
homepage = "https://github.com/sawsent/nelson"
documentation = "https://docs.rs/nelson"
readme = "README.md"
keywords = ["cli", "llm", "assistant", "shell", "developer-tools"]
categories = ["command-line-utilities", "development-tools"]
license = "Apache-2.0"
repository = "https://github.com/sawsent/nelson"
[dependencies]
arboard = "3.6.1"
bat = "0.26.1"
dirs = "6.0.0"
reqwest = { version = "0.13.1", features = ["json", "blocking"] }
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.149"
toml = "0.9.11"