[package]
edition = "2024"
rust-version = "1.85"
name = "kkrpc"
version = "0.6.1"
authors = ["kunkunsh <kunkun.sh@outlook.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Rust client/server library for kkrpc JSON-mode interop"
homepage = "https://github.com/kunkunsh/kkrpc/tree/main/interop/rust"
documentation = "https://docs.rs/kkrpc"
readme = "README.md"
keywords = [
"rpc",
"json",
"ipc",
"websocket",
"stdio",
]
categories = [
"network-programming",
"web-programming",
]
license = "Apache-2.0"
repository = "https://github.com/kunkunsh/kkrpc"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
[lib]
name = "kkrpc"
path = "src/lib.rs"
[[test]]
name = "stdio"
path = "tests/stdio.rs"
[[test]]
name = "ws"
path = "tests/ws.rs"
[dependencies.rand]
version = "0.8"
[dependencies.regex]
version = "1"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.websocket]
version = "0.27"
features = ["sync"]
[dev-dependencies]