[package]
edition = "2024"
name = "aether-wisp"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A terminal UI for AI coding agents via the Agent Client Protocol (ACP)"
readme = "README.md"
keywords = [
"tui",
"ai",
"agent",
"acp",
"terminal",
]
categories = ["command-line-interface"]
license = "MIT"
repository = "https://github.com/contextbridge/aether"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
[lib]
name = "wisp"
path = "src/lib.rs"
[[bin]]
name = "aether-wisp"
path = "src/main.rs"
[[test]]
name = "app_tests"
path = "tests/app_tests.rs"
[[test]]
name = "component_tests"
path = "tests/component_tests.rs"
[[test]]
name = "renderer_scrollback_tests"
path = "tests/renderer_scrollback_tests.rs"
[dependencies.acp_utils]
version = "0.1.0"
features = ["client"]
package = "aether-acp-utils"
[dependencies.agent-client-protocol]
version = "0.10.2"
[dependencies.base64]
version = "0.22"
[dependencies.chrono]
version = "^0.4.43"
features = ["serde"]
[dependencies.clap]
version = "4.5"
features = ["derive"]
[dependencies.ignore]
version = "0.4"
[dependencies.mime_guess]
version = "2"
[dependencies.serde]
version = "1.0.228"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.149"
[dependencies.similar]
version = "2.7.0"
[dependencies.tokio]
version = "^1.49.0"
features = ["full"]
[dependencies.tracing]
version = "0.1.44"
[dependencies.tracing-appender]
version = "0.2"
[dependencies.tracing-subscriber]
version = "0.3.22"
features = [
"env-filter",
"json",
]
[dependencies.tui]
version = "0.1.0"
package = "aether-tui"
[dependencies.unicode-width]
version = "0.2.2"
[dependencies.url]
version = "2.5"
[dependencies.utils]
version = "0.1.0"
package = "aether-utils"
[dev-dependencies.tempfile]
version = "3.25"
[dev-dependencies.tui]
version = "0.1.0"
features = ["testing"]
package = "aether-tui"
[lints.clippy]
absolute_paths = "warn"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
must_use_candidate = "allow"
pub_underscore_fields = "allow"
return_self_not_must_use = "allow"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1