-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
38 lines (34 loc) · 1.6 KB
/
Copy pathCargo.toml
File metadata and controls
38 lines (34 loc) · 1.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
[package]
name = "animus-control-protocol"
description = "Wire format for Animus daemon control RPC — CLI, MCP, and WebAPI clients call into the daemon over this surface"
version.workspace = true
edition.workspace = true
license.workspace = true
authors.workspace = true
homepage.workspace = true
repository.workspace = true
readme.workspace = true
[features]
# `client` adds the cross-process `ControlClient` that talks to the daemon's
# control socket over NDJSON JSON-RPC. Off by default so plugin authors who
# only consume the wire constants don't pull in tokio. Unix-only — the
# implementation `cfg(unix)`-gates the Unix-socket transport and the module
# is a stub on other targets.
client = ["dep:tokio", "dep:anyhow"]
[dependencies]
animus-plugin-protocol = { path = "../animus-plugin-protocol", version = "0.1.12" }
animus-subject-protocol = { path = "../animus-subject-protocol", version = "0.1.12" }
animus-log-storage-protocol = { path = "../animus-log-storage-protocol", version = "0.1.12" }
animus-trigger-protocol = { path = "../animus-trigger-protocol", version = "0.1.12" }
animus-actor = { path = "../animus-actor", version = "0.1.0" }
async-trait.workspace = true
serde.workspace = true
serde_json.workspace = true
chrono.workspace = true
thiserror.workspace = true
futures-core.workspace = true
tokio = { workspace = true, optional = true, features = ["net"] }
anyhow = { workspace = true, optional = true }
[dev-dependencies]
tokio = { workspace = true, features = ["rt-multi-thread", "macros", "io-util", "net", "sync", "time"] }
tempfile = "3"