[package]
edition = "2021"
rust-version = "1.75"
name = "coralstack-cmd-ipc"
version = "0.3.0"
authors = ["Angelfish Software LLC <support@coralstack.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Inter-Process Communication library for running typed Commands across processes and services"
readme = "README.md"
keywords = [
"ipc",
"rpc",
"mcp",
"agents",
"commands",
]
categories = [
"asynchronous",
"network-programming",
]
license = "MIT"
repository = "https://github.com/CoralStackCom/cmd-ipc"
[lib]
name = "coralstack_cmd_ipc"
path = "src/lib.rs"
[[test]]
name = "concurrency"
path = "tests/concurrency.rs"
[[test]]
name = "conformance"
path = "tests/conformance.rs"
[[test]]
name = "dynamic_integration"
path = "tests/dynamic_integration.rs"
[[test]]
name = "macro_integration"
path = "tests/macro_integration.rs"
[[test]]
name = "registry_integration"
path = "tests/registry_integration.rs"
[dependencies.coralstack-cmd-ipc-macros]
version = "0.3.0"
[dependencies.futures]
version = "0.3"
[dependencies.parking_lot]
version = "0.12"
[dependencies.schemars]
version = "1.2"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.thiserror]
version = "2"
[dependencies.uuid]
version = "1"
features = [
"v4",
"serde",
]
[dev-dependencies.futures]
version = "0.3"
features = [
"executor",
"thread-pool",
]
[dev-dependencies.serde]
version = "1"
features = [
"derive",
"derive",
]