[package]
edition = "2024"
rust-version = "1.85"
name = "clive-llm"
version = "0.1.0"
authors = ["Sedar Olmez <sedarolmez@users.noreply.github.com>"]
build = false
include = [
"src/**/*",
"Cargo.toml",
"README.md",
"LICENSE",
"CHANGELOG.md",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A local-first coding-assistant CLI that wraps Ollama, making open-source LLMs easy to chat with, run in sessions, and safely edit code from your terminal."
homepage = "https://github.com/SedarOlmez94/clive"
documentation = "https://github.com/SedarOlmez94/clive#readme"
readme = "README.md"
keywords = [
"ollama",
"llm",
"cli",
"ai",
"coding-assistant",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "MIT"
repository = "https://github.com/SedarOlmez94/clive"
[[bin]]
name = "clive"
path = "src/main.rs"
[dependencies.anyhow]
version = "1"
[dependencies.clap]
version = "4"
features = [
"derive",
"env",
]
[dependencies.clap_complete]
version = "4"
[dependencies.reqwest]
version = "0.12"
features = [
"blocking",
"json",
"rustls-tls",
]
default-features = false
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.similar]
version = "2"
[dev-dependencies.tempfile]
version = "3"
[profile.release]
lto = true
codegen-units = 1
strip = true