We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 68117fa commit 60c0de5Copy full SHA for 60c0de5
platform/traits/Cargo.toml
platform/traits/hubris/src/lib.rs
@@ -8,6 +8,13 @@
8
//! The traits use concrete types instead of generic associated types to ensure
9
//! compatibility with Hubris IDL code generation systems.
10
11
+#![no_std]
12
+#![forbid(unsafe_code)]
13
+#![deny(missing_docs)]
14
+
15
+use core::convert::TryFrom;
16
+use core::result::Result;
17
18
use openprot_hal_blocking::{
19
digest::{owned::DigestOp, Digest},
20
mac::owned::MacOp,
platform/traits/src/lib.rs
0 commit comments