29 lines
981 B
TOML
29 lines
981 B
TOML
[package]
|
|
name = "shipote-daemon"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
license.workspace = true
|
|
authors.workspace = true
|
|
publish.workspace = true
|
|
description = "Daemon de shipote: dueño de los Workspaces, expone admin socket para shipote-cli."
|
|
|
|
[[bin]]
|
|
name = "shipote-daemon"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
shipote-card = { path = "../../modules/shipote/shipote-card" }
|
|
shipote-protocol = { path = "../../modules/shipote/shipote-protocol" }
|
|
shipote-discern = { path = "../../modules/shipote/shipote-discern" }
|
|
shipote-core = { path = "../../modules/shipote/shipote-core" }
|
|
ente-incarnate = { path = "../../shared/ente-incarnate" }
|
|
brahman-card = { path = "../../core/brahman-card" }
|
|
brahman-sidecar = { path = "../../shared/brahman-sidecar" }
|
|
anyhow = { workspace = true }
|
|
tokio = { workspace = true }
|
|
tracing = { workspace = true }
|
|
tracing-subscriber = { workspace = true }
|
|
ulid = { workspace = true }
|
|
nix = { workspace = true }
|