Update trussed to use safe Platform trait

This commit is contained in:
Robin Krahl
2025-03-11 09:23:17 +01:00
parent d0774abda2
commit 2a002fdbcb
3 changed files with 3 additions and 3 deletions
Generated
+1 -1
View File
@@ -1440,7 +1440,7 @@ dependencies = [
[[package]]
name = "trussed"
version = "0.1.0"
source = "git+https://github.com/trussed-dev/trussed.git?rev=ac106d63ab5e19021b0e37f0efb4313f8168a110#ac106d63ab5e19021b0e37f0efb4313f8168a110"
source = "git+https://github.com/trussed-dev/trussed.git?rev=024e0eca5fb7dbd2457831f7c7bffe4341e08775#024e0eca5fb7dbd2457831f7c7bffe4341e08775"
dependencies = [
"aes",
"bitflags 2.6.0",
+1 -1
View File
@@ -37,4 +37,4 @@ ctaphid = ["ctaphid-dispatch", "usbd-ctaphid"]
ccid = ["apdu-dispatch", "usbd-ccid"]
[patch.crates-io]
trussed = { git = "https://github.com/trussed-dev/trussed.git", rev = "ac106d63ab5e19021b0e37f0efb4313f8168a110" }
trussed = { git = "https://github.com/trussed-dev/trussed.git", rev = "024e0eca5fb7dbd2457831f7c7bffe4341e08775" }
+1 -1
View File
@@ -123,7 +123,7 @@ impl Platform {
}
}
unsafe impl platform::Platform for Platform {
impl platform::Platform for Platform {
type R = ChaCha8Rng;
type S = Store;
type UI = UserInterface;