26 lines
963 B
TOML
26 lines
963 B
TOML
[package]
|
|
name = "shipote-shell"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
license.workspace = true
|
|
authors.workspace = true
|
|
publish.workspace = true
|
|
description = "GUI de shipote: vista de Workspaces+comandos+capabilities. Conecta al daemon vía shipote-protocol."
|
|
|
|
[[bin]]
|
|
name = "shipote-shell"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
shipote-card = { path = "../../modules/shipote/shipote-card" }
|
|
shipote-protocol = { path = "../../modules/shipote/shipote-protocol" }
|
|
yahweh-theme = { path = "../../modules/ui_engine/libs/theme" }
|
|
yahweh-launcher = { path = "../../modules/ui_engine/libs/launcher" }
|
|
yahweh-widget-banner = { path = "../../modules/ui_engine/widgets/banner" }
|
|
yahweh-widget-stat-card = { path = "../../modules/ui_engine/widgets/stat-card" }
|
|
yahweh-widget-app-header = { path = "../../modules/ui_engine/widgets/app-header" }
|
|
tokio = { workspace = true }
|
|
gpui = { workspace = true }
|
|
ulid = { workspace = true }
|