Initial commit, copied examples from postcard-rpc repo.

This commit is contained in:
2025-08-04 16:59:17 +02:00
commit d494cd75aa
7 changed files with 1810 additions and 0 deletions

29
Cargo.toml Normal file
View File

@@ -0,0 +1,29 @@
[package]
name = "bioz-host-rs"
version = "0.1.0"
edition = "2024"
[dependencies]
[dependencies.bioz-icd]
path = "../bioz-icd-rs"
features = ["use-std"]
[dependencies.postcard-rpc]
version = "0.11"
features = [
"use-std",
"raw-nusb",
"cobs-serial",
]
[dependencies.tokio]
version = "1.37.0"
features = [
"rt-multi-thread",
"macros",
"time",
]
[dependencies.tokio-serial]
version = "5.4.4"