Skip to content

Commit

Permalink
Merge pull request #576 from betrusted-io/xobs/add-flatipc
Browse files Browse the repository at this point in the history
libs: add flatipc implementation
  • Loading branch information
bunnie authored Sep 22, 2024
2 parents fd0eaaa + 3eb54d2 commit 3ce9ae8
Show file tree
Hide file tree
Showing 12 changed files with 1,263 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -95,9 +95,11 @@ members = [
"kernel",
"loader",
"libs/chat",
"libs/flatipc",
"libs/flatipc-derive",
"libs/perflib",
"libs/userprefs",
"libs/tls",
"libs/userprefs",
"libs/xous-pio",
"libs/xous-bio",
"libs/xous-bio-bdma",
Expand Down
20 changes: 20 additions & 0 deletions libs/flatipc-derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
[package]
edition = "2021"
name = "flatipc-derive"
version = "0.1.0"
authors = ["Sean Cross <[email protected]>"]
description = "Custom derive for traits from the flatipc crate"
license = "BSD-2-Clause OR Apache-2.0 OR MIT"
repository = "https://github.com/betrusted/xous-flatipc"

[lib]
proc-macro = true

[dependencies]
proc-macro2 = "*"
quote = "*"
syn = { version = "2", features = ["parsing", "extra-traits"] }

[features]
xous = []
default = []
Loading

0 comments on commit 3ce9ae8

Please sign in to comment.