[package]
edition = "2024"
name = "icmsg"
version = "0.1.0"
build = false
exclude = ["/examples"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Rust implementation of the ICMsg IPC backend"
readme = "README.md"
keywords = [
"embedded",
"async",
"ipc",
]
categories = [
"embedded",
"no-std::no-alloc",
"asynchronous",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/0e4ef622/icmsg-rs"
[features]
defmt = ["dep:defmt"]
[lib]
name = "icmsg"
path = "src/lib.rs"
[dependencies.defmt]
version = "1"
optional = true
[dependencies.elain]
version = "0.3.1"
[dependencies.embassy-futures]
version = "0.1.1"
[dependencies.embedded-hal-async]
version = "1.0.0"
[dependencies.embedded-io]
version = "0.7"
[dev-dependencies.tokio]
version = "1.44.2"
features = [
"macros",
"rt-multi-thread",
"sync",
"time",
]
[target."cfg(loom)".dependencies.loom]
version = "0.7.2"
[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = ["cfg(loom)"]