[package]
edition = "2024"
name = "actrpc-core"
version = "0.1.0"
authors = ["Kutay YILDIZ <mail@kutayyildiz.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Core types and traits for ActRPC."
documentation = "https://docs.rs/actrpc-core"
readme = "README.md"
keywords = [
"rpc",
"async",
"action",
"json",
]
categories = ["network-programming"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/kutayyildiz/ActRPC"
[lib]
name = "actrpc_core"
path = "src/lib.rs"
[[test]]
name = "convert"
path = "tests/convert.rs"
[[test]]
name = "describe_macros"
path = "tests/describe_macros.rs"
[[test]]
name = "interception"
path = "tests/interception.rs"
[[test]]
name = "json_rpc"
path = "tests/json_rpc.rs"
[[test]]
name = "participant"
path = "tests/participant.rs"
[[test]]
name = "phase"
path = "tests/phase.rs"
[[test]]
name = "runtime_descriptors"
path = "tests/runtime_descriptors.rs"
[dependencies.actrpc-core-macros]
version = "0.1.0"
[dependencies.serde]
version = "1.0.228"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.149"
[dependencies.strum]
version = "0.28.0"
features = ["derive"]
[dependencies.thiserror]
version = "2.0.18"
[dev-dependencies.trybuild]
version = "1.0"