forked from informalsystems/hermes
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use
#![no_std]
for ibc-proto crate (informalsystems#1164)
* Use #![no_std] for ibc-proto crate * Enable js feature in get_random to allow compilation in wasm * Add no-std compliance checking * Fix CI * Fix CI * Use Cargo nightly to check for use of std crate * Remove no-std GitHub workflow for now * Update Cargo.lock Co-authored-by: Romain Ruetschi <[email protected]>
- Loading branch information
1 parent
af1b480
commit 6eb631b
Showing
7 changed files
with
1,131 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,6 +9,7 @@ members = [ | |
] | ||
|
||
exclude = [ | ||
"no-std-check", | ||
"proto-compiler" | ||
] | ||
|
||
|
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
target/ |
Oops, something went wrong.