[package]
edition = "2021"
name = "forge-worker-sdk"
version = "0.0.6"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Organizyio Forge — Rust worker IPC SDK (framing, server runtime, job registry, dispatcher)."
documentation = "https://docs.rs/forge-worker-sdk"
readme = "README.md"
license = "Apache-2.0"
repository = "https://github.com/organizyio/forge"
[lib]
name = "forge_worker_sdk"
path = "src/lib.rs"
[[test]]
name = "control_plane_dispatch"
path = "tests/control_plane_dispatch.rs"
[[test]]
name = "framing_roundtrip"
path = "tests/framing_roundtrip.rs"
[[test]]
name = "job_registry"
path = "tests/job_registry.rs"
[[test]]
name = "protocol_fixtures"
path = "tests/protocol_fixtures.rs"
[dependencies.anyhow]
version = "1"
[dependencies.bytes]
version = "1"
[dependencies.futures]
version = "0.3"
[dependencies.interprocess]
version = "2"
features = ["tokio"]
[dependencies.rmp-serde]
version = "1"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.thiserror]
version = "1"
[dependencies.tokio]
version = "1"
features = ["full"]
[dependencies.tokio-util]
version = "0.7"
features = ["codec"]
[dependencies.tracing]
version = "0.1"