mirror of
https://github.com/fluencelabs/parity-wasm
synced 2025-05-30 16:11:41 +00:00
Merge pull request #168 from paritytech/fix-bump
Fix warnings and bump version
This commit is contained in:
commit
92901b838b
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "parity-wasm"
|
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>"]
|
authors = ["Nikolay Volf <nikvolf@gmail.com>", "Svyatoslav Nikolsky <svyatonik@yandex.ru>", "Sergey Shulepov <s.pepyakin@gmail.com>"]
|
||||||
license = "MIT/Apache-2.0"
|
license = "MIT/Apache-2.0"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
|
@ -1,4 +1,5 @@
|
|||||||
// In this example we execute a contract funciton exported as "_call"
|
// In this example we execute a contract funciton exported as "_call"
|
||||||
|
#![allow(deprecated)]
|
||||||
|
|
||||||
extern crate parity_wasm;
|
extern crate parity_wasm;
|
||||||
|
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
#![allow(deprecated)]
|
||||||
|
|
||||||
extern crate parity_wasm;
|
extern crate parity_wasm;
|
||||||
|
|
||||||
use std::env::args;
|
use std::env::args;
|
||||||
|
@ -516,7 +516,7 @@ mod integration_tests {
|
|||||||
#[test]
|
#[test]
|
||||||
#[should_panic]
|
#[should_panic]
|
||||||
fn wrong_varuint1_case() {
|
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");
|
.expect("Maybe shouldn't be deserialized");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user