We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7e7ac2a commit e0928ebCopy full SHA for e0928eb
Cargo.toml
@@ -8,6 +8,6 @@ description = "ewasm API for Rust"
8
edition = "2018"
9
10
[features]
11
-default = [ "std" ]
+default = []
12
std = []
13
debug = []
src/lib.rs
@@ -1,3 +1,5 @@
1
+#![cfg_attr(not(feature = "std"), no_std)]
2
+
3
/// ewasm_api is a library used to interface with Ethereum's EEI in Ewasm, a set of enhancements to
4
/// the Ethereum smart contract platform.
5
/// ewasm_api exposes both a set of unsafe "native" functions representing the actual EEI
0 commit comments