Warp to Galaxy internal rebrand

This commit is contained in:
2026-08-27 00:29:21 -05:00
parent d72874534d
commit a69b927cc3
108 changed files with 395 additions and 2098 deletions
+1 -25
View File
@@ -8,30 +8,11 @@ license.workspace = true
autobins = false
default-run = "warp-tui-oss"
# One binary per channel, mirroring the GUI app's `app/src/bin/*` layout. The
# OSS bin is the `default-run` so bare `cargo run -p warp_tui` builds without
# the internal `warp-channel-config` generator; `./script/run-tui` selects the
# local bin when the generator is available.
# The OSS binary is the only shipped TUI target.
[[bin]]
name = "warp-tui-oss"
path = "src/bin/oss.rs"
[[bin]]
name = "warp-tui"
path = "src/bin/local.rs"
[[bin]]
name = "warp-tui-dev"
path = "src/bin/dev.rs"
[[bin]]
name = "warp-tui-preview"
path = "src/bin/preview.rs"
[[bin]]
name = "warp-tui-stable"
path = "src/bin/stable.rs"
[dependencies]
anyhow.workspace = true
log.workspace = true
@@ -43,7 +24,6 @@ string-offset.workspace = true
sum_tree.workspace = true
vec1.workspace = true
warp = { workspace = true, features = ["tui"] }
warp_channel_config.workspace = true
warp_core.workspace = true
warp_editor.workspace = true
warp_terminal.workspace = true
@@ -64,8 +44,4 @@ name = "tui_input_demo"
required-features = []
[features]
# Declared so the `warp_channel_config::load_config!` macro's
# `cfg(feature = "release_bundle")` branch is a known cfg in this crate. Today it
# stays off and the local bin uses the runtime generator; wiring the embedded
# config path (a `build.rs`) is phase 2 of the channel setup.
release_bundle = ["warp/release_bundle"]