diff --git a/.travis.yml b/.travis.yml index 86d7a85..d856856 100644 --- a/.travis.yml +++ b/.travis.yml @@ -6,4 +6,4 @@ rust: script: - cargo build --all --release --verbose - cargo test --all --verbose - - if [ "$TRAVIS_RUST_VERSION" == "nightly" ]; then cargo build --no-default-features; fi + - cargo build --no-default-features diff --git a/Cargo.toml b/Cargo.toml index 5a468a0..9441a90 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pwasm-utils" -version = "0.11.0" +version = "0.12.0" authors = ["Nikolay Volf ", "Sergey Pepyakin "] license = "MIT/Apache-2.0" readme = "README.md" @@ -10,7 +10,7 @@ keywords = ["wasm", "webassembly", "pwasm"] [dependencies] # If you add the feature "bulk", make sure you fixed all expects that say # "parity-wasm is compiled without bulk-memory operations" -parity-wasm = { version = "0.40.1", default-features = false } +parity-wasm = { version = "0.41.0", default-features = false } log = { version = "0.4", default-features = false } byteorder = { version = "1", default-features = false } diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 09d48b3..5bdbb49 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pwasm-utils-cli" -version = "0.11.0" +version = "0.12.0" authors = ["Nikolay Volf ", "Sergey Pepyakin "] license = "MIT/Apache-2.0" readme = "README.md" @@ -38,8 +38,8 @@ name = "wasm-check" path = "check/main.rs" [dependencies] -parity-wasm = "0.40.1" -pwasm-utils = { path = "..", version = "0.11" } +parity-wasm = "0.41.0" +pwasm-utils = { path = "..", version = "0.12" } glob = "0.2" clap = "2.24" log = "0.4" diff --git a/src/lib.rs b/src/lib.rs index 424a8f3..8303afc 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,5 +1,4 @@ #![cfg_attr(not(feature = "std"), no_std)] -#![cfg_attr(not(feature = "std"), feature(alloc))] #[cfg(not(feature = "std"))] #[macro_use]