[package]
edition = "2021"
name = "claw-core-protocol"
version = "0.1.0"
authors = ["theonlyhennygod"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Async Rust client and protocol types for the claw_core daemon (JSON-over-Unix-socket). Use standalone or with ZeroClaw via --features claw-core."
readme = "README.md"
keywords = [
"claw",
"zeroclaw",
"agent",
"protocol",
"unix-socket",
]
categories = [
"api-bindings",
"asynchronous",
]
license = "MIT"
repository = "https://github.com/ArcadeLabsInc/claw"
[lib]
name = "claw_core_protocol"
path = "src/lib.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.thiserror]
version = "2.0"
[dependencies.tokio]
version = "1"
features = [
"net",
"io-util",
]
default-features = false
[dependencies.uuid]
version = "1"
features = [
"v4",
"std",
]
default-features = false