Skip to content

Commit

Permalink
fix(example): Ensure uuid feature is enabled
Browse files Browse the repository at this point in the history
  • Loading branch information
448-OG committed Oct 9, 2023
1 parent 70a7dfc commit 61db58a
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion examples/simple.rs
Expand Up @@ -3,7 +3,12 @@ fn main() {
foo()
}

#[cfg(all(feature = "encryption", feature = "ed25519", feature = "x25519"))]
#[cfg(all(
feature = "encryption",
feature = "ed25519",
feature = "x25519",
feature = "uuid"
))]
fn foo() {
use memsecurity::*;
let mut foo = EncryptedMem::new();
Expand Down

0 comments on commit 61db58a

Please sign in to comment.