Merge pull request #134 from bddap/bddap-nostd-on-stable

Bump 'parity-wasm' version to enable no_std builds on stable.
This commit is contained in:
Nikolay Volf
2019-11-01 16:36:11 +03:00
committed by GitHub
4 changed files with 6 additions and 7 deletions
+1 -1
View File
@@ -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
+2 -2
View File
@@ -1,6 +1,6 @@
[package]
name = "pwasm-utils"
version = "0.11.0"
version = "0.12.0"
authors = ["Nikolay Volf <nikvolf@gmail.com>", "Sergey Pepyakin <s.pepyakin@gmail.com>"]
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 }
+3 -3
View File
@@ -1,6 +1,6 @@
[package]
name = "pwasm-utils-cli"
version = "0.11.0"
version = "0.12.0"
authors = ["Nikolay Volf <nikvolf@gmail.com>", "Sergey Pepyakin <s.pepyakin@gmail.com>"]
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"
-1
View File
@@ -1,5 +1,4 @@
#![cfg_attr(not(feature = "std"), no_std)]
#![cfg_attr(not(feature = "std"), feature(alloc))]
#[cfg(not(feature = "std"))]
#[macro_use]