From ad170c7412759a6e2c5a9e7cd473887539ad5586 Mon Sep 17 00:00:00 2001 From: Dan Gohman Date: Fri, 17 Aug 2018 12:04:01 -0700 Subject: [PATCH] Update to log 0.4.4. --- lib/codegen/Cargo.toml | 2 +- lib/filetests/Cargo.toml | 2 +- lib/module/Cargo.toml | 2 +- lib/umbrella/src/lib.rs | 4 ++-- lib/wasm/Cargo.toml | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/lib/codegen/Cargo.toml b/lib/codegen/Cargo.toml index 59f9cf1737..b8333e0bf8 100644 --- a/lib/codegen/Cargo.toml +++ b/lib/codegen/Cargo.toml @@ -17,7 +17,7 @@ failure = { version = "0.1.1", default-features = false, features = ["derive"] } failure_derive = { version = "0.1.1", default-features = false } hashmap_core = { version = "0.1.9", optional = true } target-lexicon = { version = "0.0.3", default-features = false } -log = { version = "0.4.3", default-features = false, features = ["release_max_level_warn"] } +log = { version = "0.4.4", default-features = false, features = ["release_max_level_warn"] } # 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 # machine code. Integration tests that need external dependencies can be diff --git a/lib/filetests/Cargo.toml b/lib/filetests/Cargo.toml index 667ed21418..d74e5efa0a 100644 --- a/lib/filetests/Cargo.toml +++ b/lib/filetests/Cargo.toml @@ -14,4 +14,4 @@ cranelift-reader = { path = "../reader", version = "0.19.0" } file-per-thread-logger = "0.1.1" filecheck = "0.3.0" num_cpus = "1.8.0" -log = "0.4.3" +log = "0.4.4" diff --git a/lib/module/Cargo.toml b/lib/module/Cargo.toml index 4d57a6b2af..33e04dbcd8 100644 --- a/lib/module/Cargo.toml +++ b/lib/module/Cargo.toml @@ -13,7 +13,7 @@ cranelift-codegen = { path = "../codegen", version = "0.19.0", default-features cranelift-entity = { path = "../entity", version = "0.19.0", default-features = false } hashmap_core = { version = "0.1.9", optional = true } failure = "0.1.1" -log = { version = "0.4.3", default-features = false, features = ["release_max_level_warn"] } +log = { version = "0.4.4", default-features = false, features = ["release_max_level_warn"] } [features] default = ["std"] diff --git a/lib/umbrella/src/lib.rs b/lib/umbrella/src/lib.rs index 4faeabdd8a..d56bdd6f71 100644 --- a/lib/umbrella/src/lib.rs +++ b/lib/umbrella/src/lib.rs @@ -25,8 +25,8 @@ pub mod prelude { pub use codegen::ir::immediates::{Ieee32, Ieee64, Imm64}; pub use codegen::ir::types; pub use codegen::ir::{ - AbiParam, Ebb, ExtFuncData, GlobalValueData, InstBuilder, JumpTableData, MemFlags, - Signature, StackSlotData, StackSlotKind, TrapCode, Type, Value, + AbiParam, Ebb, ExtFuncData, ExternalName, GlobalValueData, InstBuilder, JumpTableData, + MemFlags, Signature, StackSlotData, StackSlotKind, TrapCode, Type, Value, }; pub use codegen::isa; pub use codegen::settings::{self, CallConv, Configurable}; diff --git a/lib/wasm/Cargo.toml b/lib/wasm/Cargo.toml index 369220c4a7..df35edb25f 100644 --- a/lib/wasm/Cargo.toml +++ b/lib/wasm/Cargo.toml @@ -17,7 +17,7 @@ hashmap_core = { version = "0.1.9", optional = true } failure = { version = "0.1.1", default-features = false, features = ["derive"] } failure_derive = { version = "0.1.1", default-features = false } target-lexicon = { version = "0.0.3", default-features = false } -log = { version = "0.4.3", default-features = false, features = ["release_max_level_warn"] } +log = { version = "0.4.4", default-features = false, features = ["release_max_level_warn"] } [dev-dependencies] wabt = "0.4"