[package] name = "alkcall" version = "0.1.0" edition = "2021" rust-version = "1.85" license = "MIT OR Apache-2.0" description = "Call + channels RPC: structured JSON operations, streaming subscriptions, service discovery, and N-channel multiplexing over one transport stream" repository = "https://git.alk.dev/alkdev/alkcall" readme = "README.md" keywords = ["rpc", "json-rpc", "multiplexing", "wire-format", "alpn"] categories = ["network-programming", "asynchronous", "encoding"] exclude = [".opencode/", "docs/reviews/", "docs/research/", "docs/sdd_process.md", "Cargo.lock"] [lib] name = "alkcall" [features] default = [] [dependencies] alktype = "0.1.0" jsonschema = { version = "0.46", default-features = false } tokio = { version = "1", features = ["full"] } serde = { version = "1", features = ["derive"] } serde_json = "1" async-trait = "0.1" tracing = "0.1" thiserror = "2" uuid = { version = "1", features = ["v4"] } futures = "0.3" parking_lot = "0.12" bytes = "1" zeroize = { version = "1", features = ["alloc", "derive"] }