[package]
edition = "2024"
rust-version = "1.85"
name = "embedded-rpc"
version = "0.2.0"
authors = ["Martin Pittermann"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "no_std async request/response synchronization (Embassy-style)"
documentation = "https://docs.rs/embedded-rpc"
readme = "README.md"
keywords = [
"no-std",
"embassy",
"async",
"rpc",
"embedded",
]
categories = [
"embedded",
"no-std",
"asynchronous",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/martin2250/embedded-rpc"
[lib]
name = "embedded_rpc"
path = "src/lib.rs"
[[test]]
name = "coverage_additional"
path = "tests/coverage_additional.rs"
[[test]]
name = "tests"
path = "tests/tests.rs"
[dependencies.embassy-sync]
version = "0.8"
[dev-dependencies.embassy-sync]
version = "0.8"
features = ["std"]
[dev-dependencies.tokio]
version = "1"
features = [
"macros",
"rt",
"sync",
"time",
]