linesmith 0.2.1

A Rust status line for Claude Code and other AI coding CLIs
Documentation
[package]
name = "linesmith"
description = "A Rust status line for Claude Code and other AI coding CLIs"
version = "0.2.1"
edition.workspace = true
rust-version.workspace = true
license.workspace = true
repository.workspace = true
homepage.workspace = true
documentation.workspace = true
readme.workspace = true
authors.workspace = true
keywords.workspace = true
categories.workspace = true

[lints]
workspace = true

[dependencies]
# Internal pins live per-crate (not in [workspace.dependencies]) so
# Knope can rewrite the version string in place on sibling bumps —
# see root Cargo.toml for the rationale.
linesmith-core = { version = "0.2.0", path = "../linesmith-core" }
# Direct plugin import per ADR-0020 (bypasses linesmith-core's bridge facade).
linesmith-plugin = { version = "0.1.3", path = "../linesmith-plugin" }
serde.workspace = true
serde_json.workspace = true
catppuccin.workspace = true
dialoguer.workspace = true
gix.workspace = true
httpdate.workspace = true
jiff.workspace = true
lexopt.workspace = true
rhai.workspace = true
schemars.workspace = true
secrecy.workspace = true
supports-color.workspace = true
supports-hyperlinks.workspace = true
tempfile.workspace = true
terminal_size.workspace = true
ureq.workspace = true
toml.workspace = true
# Mutable TOML document for the `linesmith config` write-back
# path. Lives in the cli crate (not core) — only the editor needs
# it; the daily render path stays on the read-only `toml` crate.
toml_edit.workspace = true
unicode-segmentation.workspace = true
unicode-width.workspace = true
# TUI runtime for `linesmith config`. Optional + gated by `config-ui`
# per ADR-0015 so `--no-default-features` cleanly drops the substrate
# from the dep graph for binary-size-sensitive distributors. The
# render path never imports this module.
ratatui = { workspace = true, optional = true }

[features]
default = ["config-ui"]
# Enables the `linesmith config` interactive TUI editor. Default-on
# for v0.1; opt out with `cargo build --no-default-features` for a
# render-only binary.
config-ui = ["dep:ratatui"]

[dev-dependencies]
criterion.workspace = true
insta.workspace = true
ratatui.workspace = true
tempfile.workspace = true

[[bin]]
name = "linesmith"
path = "src/main.rs"

[[bench]]
name = "plugins"
harness = false

[[bench]]
name = "render"
harness = false