Skip to content

Commit a65c134

Browse files
committed
fix: updated from #![no_std] to #![cfg_attr(not(test), no_std)]
1 parent 116230f commit a65c134

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

  • basics/cross-program-invocation/quasar

basics/cross-program-invocation/quasar/hand/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#![no_std]
1+
#![cfg_attr(not(test), no_std)]
22

33
use quasar_lang::prelude::*;
44

basics/cross-program-invocation/quasar/lever/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#![no_std]
1+
#![cfg_attr(not(test), no_std)]
22

33
use quasar_lang::prelude::*;
44

0 commit comments

Comments
 (0)