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 761e7bb commit f7ee7cfCopy full SHA for f7ee7cf
Cargo.toml
@@ -7,5 +7,5 @@ repository = "https://github.com/ewasm/ewasm-rust-api"
7
description = "ewasm API for Rust"
8
9
[features]
10
-default = [ "std" ]
+default = []
11
std = []
src/lib.rs
@@ -1,5 +1,8 @@
1
+#![cfg_attr(not(feature = "std"), no_std)]
2
+
3
#[cfg(not(feature = "std"))]
4
pub mod convert;
5
6
/// ewasm_api is a library used to interface with Ethereum's EEI in Ewasm, a set of enhancements to
/// the Ethereum smart contract platform.
/// ewasm_api exposes both a set of unsafe "native" functions representing the actual EEI
0 commit comments