Merge pull request #168 from paritytech/fix-bump

Fix warnings and bump version
This commit is contained in:
Nikolay Volf 2018-02-09 16:46:59 +03:00 committed by GitHub
commit 92901b838b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 5 additions and 2 deletions

View File

@ -1,6 +1,6 @@
[package]
name = "parity-wasm"
version = "0.23.0"
version = "0.24.0"
authors = ["Nikolay Volf <nikvolf@gmail.com>", "Svyatoslav Nikolsky <svyatonik@yandex.ru>", "Sergey Shulepov <s.pepyakin@gmail.com>"]
license = "MIT/Apache-2.0"
readme = "README.md"

View File

@ -1,4 +1,5 @@
// In this example we execute a contract funciton exported as "_call"
#![allow(deprecated)]
extern crate parity_wasm;

View File

@ -1,3 +1,5 @@
#![allow(deprecated)]
extern crate parity_wasm;
use std::env::args;

View File

@ -516,7 +516,7 @@ mod integration_tests {
#[test]
#[should_panic]
fn wrong_varuint1_case() {
let module = deserialize_file("./res/cases/v1/varuint1_1.wasm")
let _module = deserialize_file("./res/cases/v1/varuint1_1.wasm")
.expect("Maybe shouldn't be deserialized");
}
}