[package]
edition = "2021"
name = "wraith-cli"
version = "0.1.0"
build = false
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "The ghost in your terminal — an AI coding agent in Rust"
readme = false
keywords = [
"ai",
"cli",
"coding-agent",
"terminal",
"llm",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "MIT"
repository = "https://github.com/wraith-code/wraith"
[[bin]]
name = "wraith"
path = "src/main.rs"
[dependencies.api]
version = "0.1.0"
package = "wraith-api"
[dependencies.commands]
version = "0.1.0"
package = "wraith-commands"
[dependencies.crossterm]
version = "0.28"
[dependencies.plugins]
version = "0.1.0"
package = "wraith-plugins"
[dependencies.pulldown-cmark]
version = "0.13"
[dependencies.runtime]
version = "0.1.0"
package = "wraith-runtime"
[dependencies.rustyline]
version = "15"
[dependencies.serde_json]
version = "1"
[dependencies.syntect]
version = "5"
[dependencies.tokio]
version = "1"
features = [
"rt-multi-thread",
"time",
]
[dependencies.tools]
version = "0.1.0"
package = "wraith-tools"
[lints.clippy]
cast_possible_truncation = "allow"
cast_possible_wrap = "allow"
cast_precision_loss = "allow"
cast_sign_loss = "allow"
explicit_counter_loop = "allow"
format_push_string = "allow"
if_same_then_else = "allow"
match_same_arms = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
single_match_else = "allow"
too_many_lines = "allow"
uninlined_format_args = "allow"
unnested_or_patterns = "allow"
unused_self = "allow"
useless_format = "allow"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
unsafe_code = "forbid"