[package]
edition = "2024"
name = "nelson"
version = "0.0.1"
authors = ["Vicente Figueiredo <vicenteppfigueiredo@gmail.com>"]
build = false
exclude = [
"target",
"*.rs.bk",
".github",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
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"
[[bin]]
name = "nelson"
path = "src/main.rs"
[dependencies.arboard]
version = "3.6.1"
[dependencies.bat]
version = "0.26.1"
[dependencies.dirs]
version = "6.0.0"
[dependencies.reqwest]
version = "0.13.1"
features = [
"json",
"blocking",
]
[dependencies.serde]
version = "1.0.228"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.149"
[dependencies.toml]
version = "0.9.11"