change wasm to wasm32

This commit is contained in:
vms 2020-08-24 20:50:03 +03:00
parent 6a21c007a2
commit b90feb4221
3 changed files with 3 additions and 3 deletions

View File

@ -40,7 +40,7 @@ impl CallParameters {
}
}
#[cfg(target_arch = "wasm")]
#[cfg(target_arch = "wasm32")]
#[fce]
#[link(wasm_import_module = "host")]
#[allow(improper_ctypes)]

View File

@ -38,7 +38,7 @@ mod logger;
mod result;
pub use call_parameters::CallParameters;
#[cfg(target_arch = "wasm")]
#[cfg(target_arch = "wasm32")]
pub use call_parameters::get_call_parameters;
pub use export_allocator::allocate;
pub use export_allocator::deallocate;

View File

@ -72,7 +72,7 @@ extern crate fluence_sdk_main;
pub use fluence_sdk_macro::fce;
pub use fluence_sdk_main::CallParameters;
#[cfg(target_arch = "wasm")]
#[cfg(target_arch = "wasm32")]
pub use fluence_sdk_main::get_call_parameters;
#[cfg(feature = "logger")]
pub use fluence_sdk_main::WasmLogger;