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