mirror of
https://github.com/pezkuwichain/wasm-instrument.git
synced 2026-06-13 17:31:09 +00:00
Update dependencies
This commit is contained in:
+1
-1
@@ -1,8 +1,8 @@
|
|||||||
language: rust
|
language: rust
|
||||||
|
dist: focal
|
||||||
rust:
|
rust:
|
||||||
- nightly
|
- nightly
|
||||||
- stable
|
- stable
|
||||||
|
|
||||||
script:
|
script:
|
||||||
- cargo test --all-features --verbose
|
- cargo test --all-features --verbose
|
||||||
- cargo build --no-default-features --verbose
|
- cargo build --no-default-features --verbose
|
||||||
|
|||||||
+11
-13
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "pwasm-utils"
|
name = "pwasm-utils"
|
||||||
version = "0.17.1"
|
version = "0.17.2"
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
authors = ["Nikolay Volf <nikvolf@gmail.com>", "Sergey Pepyakin <s.pepyakin@gmail.com>"]
|
authors = ["Nikolay Volf <nikvolf@gmail.com>", "Sergey Pepyakin <s.pepyakin@gmail.com>"]
|
||||||
license = "MIT/Apache-2.0"
|
license = "MIT/Apache-2.0"
|
||||||
@@ -45,25 +45,23 @@ path = "cli/check/main.rs"
|
|||||||
required-features = ["cli"]
|
required-features = ["cli"]
|
||||||
|
|
||||||
[dependencies]
|
[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.42.1", default-features = false }
|
|
||||||
log = { version = "0.4", default-features = false }
|
|
||||||
byteorder = { version = "1", default-features = false }
|
byteorder = { version = "1", default-features = false }
|
||||||
|
log = { version = "0.4", default-features = false }
|
||||||
|
parity-wasm = { version = "0.42", default-features = false }
|
||||||
|
|
||||||
# Dependencies only used by the binaries
|
# Dependencies only used by the binaries
|
||||||
glob = { version = "0.2", optional = true }
|
clap = { version = "2", optional = true }
|
||||||
clap = { version = "2.24", optional = true }
|
env_logger = { version = "0.8", optional = true }
|
||||||
env_logger = { version = "0.5", optional = true }
|
glob = { version = "0.3", optional = true }
|
||||||
lazy_static = { version = "1.0", optional = true }
|
lazy_static = { version = "1", optional = true }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
|
binaryen = "0.12"
|
||||||
|
diff = "0.1"
|
||||||
|
indoc = "1"
|
||||||
|
rand = "0.8"
|
||||||
tempdir = "0.3"
|
tempdir = "0.3"
|
||||||
wabt = "0.10"
|
wabt = "0.10"
|
||||||
diff = "0.1.11"
|
|
||||||
indoc = "0.3"
|
|
||||||
rand = "0.7"
|
|
||||||
binaryen = "0.8"
|
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
default = ["std"]
|
default = ["std"]
|
||||||
|
|||||||
+1
-6
@@ -1,4 +1,3 @@
|
|||||||
use crate::std::env;
|
|
||||||
use log::LevelFilter;
|
use log::LevelFilter;
|
||||||
use env_logger::Builder;
|
use env_logger::Builder;
|
||||||
use lazy_static::lazy_static;
|
use lazy_static::lazy_static;
|
||||||
@@ -7,11 +6,7 @@ lazy_static! {
|
|||||||
static ref LOG_DUMMY: bool = {
|
static ref LOG_DUMMY: bool = {
|
||||||
let mut builder = Builder::new();
|
let mut builder = Builder::new();
|
||||||
builder.filter(None, LevelFilter::Info);
|
builder.filter(None, LevelFilter::Info);
|
||||||
|
builder.parse_default_env();
|
||||||
if let Ok(log) = env::var("RUST_LOG") {
|
|
||||||
builder.parse(&log);
|
|
||||||
}
|
|
||||||
|
|
||||||
builder.init();
|
builder.init();
|
||||||
trace!("logger initialized");
|
trace!("logger initialized");
|
||||||
true
|
true
|
||||||
|
|||||||
Reference in New Issue
Block a user