From c0e7791c49e73f562efb96fd4ca4d7ff40e16443 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 22 Feb 2021 22:40:23 +0000 Subject: [PATCH] Bump measureme from 9.0.0 to 9.1.0 (#1139) Bumps [measureme](https://github.com/rust-lang/measureme) from 9.0.0 to 9.1.0. - [Release notes](https://github.com/rust-lang/measureme/releases) - [Changelog](https://github.com/rust-lang/measureme/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/measureme/compare/9.0.0...9.1.0) Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- Cargo.lock | 26 ++++++++++++++++++++++++-- boa/Cargo.toml | 2 +- 2 files changed, 25 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 85d09713d6..518a5b2247 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -676,11 +676,14 @@ checksum = "7ffc5c5338469d4d3ea17d269fa8ea3512ad247247c30bd2df69e68309ed0a08" [[package]] name = "measureme" -version = "9.0.0" +version = "9.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "22bf8d885d073610aee20e7fa205c4341ed32a761dbde96da5fd96301a8d3e82" +checksum = "4a98e07fe802486895addb2b5467f33f205e82c426bfaf350f5d8109b137767c" dependencies = [ + "log", + "memmap", "parking_lot", + "perf-event-open-sys", "rustc-hash", "smallvec", ] @@ -691,6 +694,16 @@ version = "2.3.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0ee1c47aaa256ecabcaea351eae4a9b01ef39ed810004e298d2511ed284b1525" +[[package]] +name = "memmap" +version = "0.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6585fd95e7bb50d6cc31e20d4cf9afb4e2ba16c5846fc76793f11218da9c475b" +dependencies = [ + "libc", + "winapi", +] + [[package]] name = "memoffset" version = "0.6.1" @@ -831,6 +844,15 @@ version = "2.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d4fd5641d01c8f18a23da7b6fe29298ff4b55afcccdf78973b24cf3175fee32e" +[[package]] +name = "perf-event-open-sys" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ce9bedf5da2c234fdf2391ede2b90fabf585355f33100689bc364a3ea558561a" +dependencies = [ + "libc", +] + [[package]] name = "pkg-config" version = "0.3.19" diff --git a/boa/Cargo.toml b/boa/Cargo.toml index 45cb819e95..0d95eadeb6 100644 --- a/boa/Cargo.toml +++ b/boa/Cargo.toml @@ -38,7 +38,7 @@ chrono = "0.4.19" fast-float = "0.2.0" # Optional Dependencies -measureme = { version = "9.0.0", optional = true } +measureme = { version = "9.1.0", optional = true } once_cell = { version = "1.5.2", optional = true } [dev-dependencies]