20 lines
601 B
TOML
20 lines
601 B
TOML
[package]
|
|
name = "shipote-protocol"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
license.workspace = true
|
|
authors.workspace = true
|
|
publish.workspace = true
|
|
description = "Wire protocol entre shipote-daemon y clientes (cli/gui). Postcard length-prefixed sobre Unix socket."
|
|
|
|
[dependencies]
|
|
shipote-card = { path = "../shipote-card" }
|
|
brahman-card = { path = "../../../core/brahman-card" }
|
|
serde = { workspace = true }
|
|
postcard = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
tokio = { workspace = true }
|
|
ulid = { workspace = true }
|
|
nix = { workspace = true }
|