Fix the name of the 32bits feature (#82)
So that it matches the Cargo.toml
This commit is contained in:
parent
d12a04f8ff
commit
4c2995ca98
|
@ -102,10 +102,10 @@ extern crate parity_wasm;
|
||||||
extern crate byteorder;
|
extern crate byteorder;
|
||||||
extern crate memory_units as memory_units_crate;
|
extern crate memory_units as memory_units_crate;
|
||||||
|
|
||||||
#[cfg(all(not(feature = "32bit_opt_in"), target_pointer_width = "32"))]
|
#[cfg(all(not(feature = "opt-in-32bit"), target_pointer_width = "32"))]
|
||||||
compile_error! {
|
compile_error! {
|
||||||
"32-bit targets are not supported at the moment.
|
"32-bit targets are not supported at the moment.
|
||||||
You can use '32bit_opt_in' feature.
|
You can use 'opt-in-32bit' feature.
|
||||||
See https://github.com/pepyakin/wasmi/issues/43"
|
See https://github.com/pepyakin/wasmi/issues/43"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue