-
Notifications
You must be signed in to change notification settings - Fork 123
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
…269) This adds the following line to all of our test files. ```rust #![cfg_attr(not(feature = "std"), no_std)] ``` This way, we test that all our features also work in `no_std` environments. Co-authored-by: Kai Ren <tyranron@gmail.com>
- Loading branch information
Showing
24 changed files
with
261 additions
and
92 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
#![cfg_attr(not(feature = "std"), no_std)] | ||
#![allow(dead_code)] | ||
|
||
use derive_more::Add; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
#![cfg_attr(not(feature = "std"), no_std)] | ||
#![allow(dead_code)] | ||
|
||
use derive_more::AddAssign; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
#![cfg_attr(not(feature = "std"), no_std)] | ||
#![allow(dead_code)] | ||
|
||
use derive_more::Constructor; | ||
|
Oops, something went wrong.