[package]
edition = "2024"
name = "id_effect_rpc"
version = "0.4.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "RPC client/server stack and HTTP boundary helpers for id_effect (@effect/rpc parity)"
readme = "README.md"
license = "CC-BY-SA-4.0"
repository = "https://github.com/Industrial/id_effect"
resolver = "2"
[lib]
name = "id_effect_rpc"
path = "src/lib.rs"
[[example]]
name = "010_json_greet"
path = "examples/010_json_greet.rs"
[[example]]
name = "020_rpc_tracing"
path = "examples/020_rpc_tracing.rs"
[[test]]
name = "codegen_stub"
path = "tests/codegen_stub.rs"
[[test]]
name = "openapi_emit"
path = "tests/openapi_emit.rs"
[[test]]
name = "wire_round_trip"
path = "tests/wire_round_trip.rs"
[dependencies.axum]
version = "0.8"
features = ["json"]
[dependencies.http]
version = "1"
[dependencies.id_effect]
version = "0.4.0"
features = ["schema-serde"]
[dependencies.id_effect_axum]
version = "0.4.0"
[dependencies.id_effect_platform]
version = "0.4.0"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.serde_yaml]
version = "0.9"
[dependencies.thiserror]
version = "2"
[dependencies.tracing]
version = "0.1"
[dependencies.uuid]
version = "1"
features = ["v4"]
[dev-dependencies.http-body-util]
version = "0.1"
[dev-dependencies.rstest]
version = "0.26"
[dev-dependencies.syn]
version = "2"
features = ["full"]
[dev-dependencies.tokio]
version = "1"
features = [
"macros",
"rt-multi-thread",
]
[dev-dependencies.tower]
version = "0.5"
features = ["util"]
[lints.rust]
unsafe_code = "forbid"
[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = ["cfg(coverage)"]