Bump log and file-per-thread-logger;

This commit is contained in:
Benjamin Bouvier
2019-01-03 15:55:33 +01:00
committed by Dan Gohman
parent 813810008b
commit c78a9a4a7c
6 changed files with 7 additions and 7 deletions

View File

@@ -36,7 +36,7 @@ capstone = { version = "0.5.0", optional = true }
wabt = { version = "0.7.0", optional = true } wabt = { version = "0.7.0", optional = true }
target-lexicon = "0.2.0" target-lexicon = "0.2.0"
pretty_env_logger = "0.3.0" pretty_env_logger = "0.3.0"
file-per-thread-logger = "0.1.1" file-per-thread-logger = "0.1.2"
[features] [features]
default = ["disas", "wasm"] default = ["disas", "wasm"]

View File

@@ -19,7 +19,7 @@ failure = { version = "0.1.1", default-features = false, features = ["derive"] }
failure_derive = { version = "0.1.1", default-features = false } failure_derive = { version = "0.1.1", default-features = false }
hashmap_core = { version = "0.1.9", optional = true } hashmap_core = { version = "0.1.9", optional = true }
target-lexicon = { version = "0.2.0", default-features = false } target-lexicon = { version = "0.2.0", default-features = false }
log = { version = "0.4.4", default-features = false } log = { version = "0.4.6", default-features = false }
# It is a goal of the cranelift-codegen crate to have minimal external dependencies. # It is a goal of the cranelift-codegen crate to have minimal external dependencies.
# Please don't add any unless they are essential to the task of creating binary # Please don't add any unless they are essential to the task of creating binary
# machine code. Integration tests that need external dependencies can be # machine code. Integration tests that need external dependencies can be

View File

@@ -13,7 +13,7 @@ edition = "2018"
cranelift-codegen = { path = "../codegen", version = "0.26.0", features = ["testing_hooks"] } cranelift-codegen = { path = "../codegen", version = "0.26.0", features = ["testing_hooks"] }
cranelift-reader = { path = "../reader", version = "0.26.0" } cranelift-reader = { path = "../reader", version = "0.26.0" }
cranelift-preopt = { path = "../preopt", version = "0.26.0" } cranelift-preopt = { path = "../preopt", version = "0.26.0" }
file-per-thread-logger = "0.1.1" file-per-thread-logger = "0.1.2"
filecheck = "0.4.0" filecheck = "0.4.0"
num_cpus = "1.8.0" num_cpus = "1.8.0"
log = "0.4.4" log = "0.4.6"

View File

@@ -13,7 +13,7 @@ edition = "2018"
[dependencies] [dependencies]
cranelift-codegen = { path = "../codegen", version = "0.26.0", default-features = false } cranelift-codegen = { path = "../codegen", version = "0.26.0", default-features = false }
target-lexicon = { version = "0.2.0", default-features = false } target-lexicon = { version = "0.2.0", default-features = false }
log = { version = "0.4.4", default-features = false } log = { version = "0.4.6", default-features = false }
hashmap_core = { version = "0.1.9", optional = true } hashmap_core = { version = "0.1.9", optional = true }
[features] [features]

View File

@@ -15,7 +15,7 @@ cranelift-codegen = { path = "../codegen", version = "0.26.0", default-features
cranelift-entity = { path = "../entity", version = "0.26.0", default-features = false } cranelift-entity = { path = "../entity", version = "0.26.0", default-features = false }
hashmap_core = { version = "0.1.9", optional = true } hashmap_core = { version = "0.1.9", optional = true }
failure = "0.1.1" failure = "0.1.1"
log = { version = "0.4.4", default-features = false } log = { version = "0.4.6", default-features = false }
[features] [features]
default = ["std"] default = ["std"]

View File

@@ -18,7 +18,7 @@ cranelift-frontend = { path = "../frontend", version = "0.26.0", default-feature
hashmap_core = { version = "0.1.9", optional = true } hashmap_core = { version = "0.1.9", optional = true }
failure = { version = "0.1.1", default-features = false, features = ["derive"] } failure = { version = "0.1.1", default-features = false, features = ["derive"] }
failure_derive = { version = "0.1.1", default-features = false } failure_derive = { version = "0.1.1", default-features = false }
log = { version = "0.4.4", default-features = false } log = { version = "0.4.6", default-features = false }
cast = { version = "0.2.2" } cast = { version = "0.2.2" }
[dev-dependencies] [dev-dependencies]