[package]
edition = "2021"
rust-version = "1.88"
name = "claudette"
version = "0.9.0"
authors = ["mrdushidush <mrdushidush@gmail.com>"]
build = false
exclude = [
"tests/**",
"examples/*.md",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Privacy-first, air-gapped AI coding agent and personal assistant that drives one local model (LM Studio or Ollama). Single-binary Rust CLI + TUI."
homepage = "https://github.com/mrdushidush/claudette"
readme = "README.md"
keywords = [
"coding-agent",
"local-llm",
"privacy",
"tui",
"ollama",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/mrdushidush/claudette"
[features]
default = ["integrations"]
experimental = []
integrations = []
[lib]
name = "claudette"
path = "src/lib.rs"
[[bin]]
name = "claudette"
path = "src/main.rs"
[[example]]
name = "brownfield_abcc"
path = "examples/brownfield_abcc.rs"
[[example]]
name = "brownfield_smoke"
path = "examples/brownfield_smoke.rs"
[[example]]
name = "forge_e2e"
path = "examples/forge_e2e.rs"
[[example]]
name = "measure_baseline"
path = "examples/measure_baseline.rs"
[[example]]
name = "oauth_smoke"
path = "examples/oauth_smoke.rs"
required-features = ["integrations"]
[dependencies.anyhow]
version = "1.0"
[dependencies.arboard]
version = "3"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.colored]
version = "3"
[dependencies.cron]
version = "0.16"
[dependencies.crossterm]
version = "0.29"
[dependencies.dotenvy]
version = "0.15"
[dependencies.getrandom]
version = "0.4"
[dependencies.glob]
version = "0.3"
[dependencies.ignore]
version = "0.4"
[dependencies.image]
version = "0.25"
features = ["png"]
default-features = false
[dependencies.ratatui]
version = "0.30"
features = ["crossterm"]
default-features = false
[dependencies.regex]
version = "1"
[dependencies.reqwest]
version = "0.12"
features = [
"blocking",
"rustls-tls",
"json",
"multipart",
]
default-features = false
[dependencies.rusqlite]
version = "0.39"
features = ["bundled"]
[dependencies.scopeguard]
version = "1"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.toml]
version = "1"
[lints.clippy]
cast_possible_truncation = "allow"
cast_precision_loss = "allow"
cast_sign_loss = "allow"
doc_markdown = "allow"
if_not_else = "allow"
items_after_statements = "allow"
match_same_arms = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
must_use_candidate = "allow"
needless_pass_by_value = "allow"
return_self_not_must_use = "allow"
similar_names = "allow"
single_match_else = "allow"
struct_excessive_bools = "allow"
too_many_arguments = "allow"
too_many_lines = "allow"
uninlined_format_args = "allow"
unreadable_literal = "allow"
unused_self = "allow"
wildcard_imports = "allow"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
unsafe_code = "forbid"