Skip to content

Commit

Permalink
Move Key into postcard-schema (#85)
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesmunns authored Jan 30, 2025
1 parent 296198e commit a7866d8
Show file tree
Hide file tree
Showing 15 changed files with 77 additions and 582 deletions.
4 changes: 2 additions & 2 deletions example/firmware-eusb-v0_3/Cargo.lock

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

2 changes: 1 addition & 1 deletion example/firmware-eusb-v0_3/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ lis3dh-async = { version = "0.9.2", features = ["defmt"] }
panic-probe = { version = "0.3", features = ["print-defmt"] }
postcard-rpc = { version = "0.11", features = ["embassy-usb-0_3-server"] }
postcard = { version = "1.0.10" }
postcard-schema = { version = "0.2.0", features = ["derive"] }
postcard-schema = { version = "0.2.1", features = ["derive"] }
portable-atomic = { version = "1.6.0", features = ["critical-section"] }

workbook-icd = { path = "../workbook-icd" }
Expand Down
4 changes: 2 additions & 2 deletions example/firmware/Cargo.lock

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

2 changes: 1 addition & 1 deletion example/firmware/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ lis3dh-async = { version = "0.9.2", features = ["defmt"] }
panic-probe = { version = "0.3", features = ["print-defmt"] }
postcard-rpc = { version = "0.11", features = ["embassy-usb-0_4-server"] }
postcard = { version = "1.0.10" }
postcard-schema = { version = "0.2.0", features = ["derive"] }
postcard-schema = { version = "0.2.1", features = ["derive"] }
portable-atomic = { version = "1.6.0", features = ["critical-section"] }

workbook-icd = { path = "../workbook-icd" }
Expand Down
33 changes: 11 additions & 22 deletions example/workbook-host/Cargo.lock

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

2 changes: 1 addition & 1 deletion example/workbook-host/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ features = [
]

[dependencies.postcard-schema]
version = "0.2"
version = "0.2.1"
features = ["derive"]

[dependencies.tokio]
Expand Down
2 changes: 1 addition & 1 deletion example/workbook-icd/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ default-features = false
version = "0.11"

[dependencies.postcard-schema]
version = "0.2"
version = "0.2.1"
features = ["derive"]

[patch.crates-io]
Expand Down
4 changes: 2 additions & 2 deletions source/postcard-rpc-test/Cargo.lock

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

2 changes: 1 addition & 1 deletion source/postcard-rpc-test/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ path = "../postcard-rpc"
features = ["use-std", "test-utils"]

[dependencies.postcard-schema]
version = "0.2.0"
version = "0.2.1"
features = ["derive"]

[dependencies.tokio]
Expand Down
2 changes: 1 addition & 1 deletion source/postcard-rpc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ defmt = { version = "0.3.5", optional = true }
heapless = "0.8.0"
postcard = { version = "1.0.10" }
serde = { version = "1.0.192", default-features = false, features = ["derive"] }
postcard-schema = { version = "0.2.0", features = ["derive"] }
postcard-schema = { version = "0.2.1", features = ["derive"] }

#
# std-only features
Expand Down
Loading

0 comments on commit a7866d8

Please sign in to comment.