mirror of
https://github.com/fluencelabs/parity-wasm
synced 2025-05-28 23:21:35 +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]
|
||||
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"
|
||||
|
@ -1,4 +1,5 @@
|
||||
// In this example we execute a contract funciton exported as "_call"
|
||||
#![allow(deprecated)]
|
||||
|
||||
extern crate parity_wasm;
|
||||
|
||||
|
@ -1,3 +1,5 @@
|
||||
#![allow(deprecated)]
|
||||
|
||||
extern crate parity_wasm;
|
||||
|
||||
use std::env::args;
|
||||
|
@ -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");
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user