25fb843c40
The prior commit switched the recipe to `[source] path = "source"`, but .gitignore:77 still listed `local/recipes/shells/brush/source` (a leftover from when brush was a transient upstream git fetch), so the vendored tree was not tracked — a fresh clone would have no brush source and the build would fail. Drop that ignore line and commit the vendored working tree (reubeno/brush @ 897b373e, with the Redox port patches pre-applied). brush is now a durable local fork like the other path=source recipes. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
43 lines
1.1 KiB
TOML
43 lines
1.1 KiB
TOML
[package]
|
|
name = "brush-interactive"
|
|
description = "Interactive layer of brush-shell"
|
|
version = "0.4.0"
|
|
authors.workspace = true
|
|
categories.workspace = true
|
|
edition.workspace = true
|
|
keywords.workspace = true
|
|
license.workspace = true
|
|
readme.workspace = true
|
|
repository.workspace = true
|
|
rust-version.workspace = true
|
|
|
|
[lib]
|
|
bench = false
|
|
|
|
[features]
|
|
default = []
|
|
basic = ["dep:crossterm", "completion"]
|
|
completion = []
|
|
minimal = []
|
|
reedline = ["dep:reedline", "dep:nu-ansi-term", "completion", "highlighting"]
|
|
highlighting = []
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
bon = "3.9.1"
|
|
brush-parser = { version = "^0.4.0", path = "../brush-parser" }
|
|
brush-core = { version = "^0.5.0", path = "../brush-core" }
|
|
crossterm = { version = "0.29.0", features = ["serde"], optional = true }
|
|
indexmap = "2.13.0"
|
|
nu-ansi-term = { version = "0.50.3", optional = true }
|
|
radix_trie = "0.3.0"
|
|
reedline = { version = "0.49.0", optional = true }
|
|
thiserror = "2.0.18"
|
|
tokio = { version = "1.52.3", features = ["rt", "sync"] }
|
|
tracing = "0.1.44"
|
|
|
|
[dev-dependencies]
|
|
pretty_assertions = { version = "1.4.1", features = ["unstable"] }
|