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