Skip to content

Commit

Permalink
fix(armv6): make coap example deps use portable atomics
Browse files Browse the repository at this point in the history
  • Loading branch information
kaspar030 committed Sep 13, 2024
1 parent ca902cd commit 198d879
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 3 deletions.
7 changes: 5 additions & 2 deletions Cargo.lock

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

3 changes: 3 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,9 @@ embassy-usb-driver = { git = "https://github.com/kaspar030/embassy", branch = "f
cyw43 = { git = "https://github.com/kaspar030/embassy", branch = "for-riot-rs-2024-08-18" }
cyw43-pio = { git = "https://github.com/kaspar030/embassy", branch = "for-riot-rs-2024-08-18" }

# patched to use portable-atomics <https://github.com/seanmonstar/try-lock/pull/11>
try-lock = { git = "https://github.com/seanmonstar/try-lock", rev = "a1aadfac9840fe23672159c12af7272e44bc684c" }

# version 0.12-to-be
smoltcp = { git = "https://github.com/smoltcp-rs/smoltcp.git", rev = "125773e282bc2e0c914a49e9c75573926e26e558" }

Expand Down
1 change: 1 addition & 0 deletions deny.toml
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ allow-git = [
"https://github.com/smoltcp-rs/smoltcp",
"https://github.com/twitchyliquid64/usbd-hid",
"https://gitlab.com/oscore/liboscore",
"https://github.com/seanmonstar/try-lock",
]

[sources.allow-org]
Expand Down
2 changes: 1 addition & 1 deletion examples/coap/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ coap-handler = "0.2.0"
coap-handler-implementations = "0.5.0"
hexlit = "0.5.5"

static-alloc = "0.2.5"
static-alloc = { version = "0.2.5", features = ["polyfill"] }
coap-scroll-ring-server = "0.2.0"
scroll-ring = "0.1.1"

Expand Down

0 comments on commit 198d879

Please sign in to comment.