[package]
edition = "2021"
rust-version = "1.75"
name = "claudette"
version = "0.2.2"
authors = ["mrdushidush <mrdushidush@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Local-first AI personal secretary for Ollama. Telegram bot, voice, persistent scheduler, Gmail and Calendar. Single-binary Rust."
homepage = "https://github.com/mrdushidush/claudette"
documentation = "https://github.com/mrdushidush/claudette#readme"
readme = "README.md"
keywords = [
"ollama",
"llm",
"assistant",
"telegram",
"cli",
]
categories = ["command-line-utilities"]
license = "Apache-2.0"
repository = "https://github.com/mrdushidush/claudette"
[lib]
name = "claudette"
path = "src/lib.rs"
[[bin]]
name = "claudette"
path = "src/main.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.colored]
version = "2"
[dependencies.cron]
version = "0.12"
[dependencies.crossterm]
version = "0.28"
[dependencies.dotenvy]
version = "0.15"
[dependencies.getrandom]
version = "0.2"
[dependencies.glob]
version = "0.3"
[dependencies.ratatui]
version = "0.29"
[dependencies.reqwest]
version = "0.12"
features = [
"blocking",
"rustls-tls",
"json",
"multipart",
]
default-features = false
[dependencies.scopeguard]
version = "1"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.toml]
version = "0.8"
[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"
[profile.release]
opt-level = "z"
lto = true
strip = true