Skip to content

Commit

Permalink
Add initial fw-icd including bridging (#7)
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesmunns authored Feb 3, 2025
1 parent ad5d3df commit c1ce78d
Show file tree
Hide file tree
Showing 3 changed files with 410 additions and 0 deletions.
253 changes: 253 additions & 0 deletions crates/poststation-fw-icd/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

36 changes: 36 additions & 0 deletions crates/poststation-fw-icd/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
[package]
name = "poststation-fw-icd"
version = "0.1.0"
edition = "2021"

[dependencies.serde]
version = "1.0"
features = ["derive"]
default-features = false

[dependencies.postcard-rpc]
version = "0.11"

[dependencies.postcard-schema]
version = "0.2"
features = ["derive", "heapless-v0_8"]

[dependencies.heapless]
version = "0.8"
default-features = false
features = ["serde"]

[features]
use-std = []

[profile.ci]
inherits = "dev"
debug = false
strip = true
debug-assertions = true
overflow-checks = true
lto = false
panic = 'unwind'
incremental = false
codegen-units = 256
rpath = false
Loading

0 comments on commit c1ce78d

Please sign in to comment.