-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add more checks to CI * Renamed from "Validate PR" to "CI" since it isn't run exclusively on PRs * Added a `features` job to test that the crates build with each feature * Added a test for WASM builds (commented out for now) * gadget-common: Fix feature conflicts caught by CI * gadget-core: Fix feature conflicts caught by CI * gadget-core: Fix feature conflicts caught by CI * gadget-sdk: Fix feature conflicts caught by CI * Update Cargo.lock * sdk: Update tangle-subxt to 0.2.0 * sdk: Fixup no_std for latest changes * common: Add missing feature * Fix compilation * Fix nightly rust lint * Update tangle-subxt
- Loading branch information
1 parent
e910dc3
commit 3d71b29
Showing
19 changed files
with
194 additions
and
135 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -37,5 +37,5 @@ default = ["std"] | |
std = [ | ||
"gadget-common/std", | ||
"gadget-io/std", | ||
"gadget-sdk/std", | ||
"gadget-sdk/default", | ||
] |
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
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,4 +1,3 @@ | ||
#[cfg(not(feature = "std"))] | ||
use alloc::string::String; | ||
use core::fmt::Display; | ||
|
||
|
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
Oops, something went wrong.