From ffa8270f6a4fd34a533c2763b55af6ce596b79cd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lauren=C8=9Biu=20Nicola?= Date: Fri, 1 Oct 2021 18:55:52 +0300 Subject: [PATCH] Bump memmap2 --- Cargo.lock | 4 ++-- crates/proc_macro_api/Cargo.toml | 4 ++-- crates/proc_macro_srv/Cargo.toml | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 04a0529eabf7..06ae6fccfd5c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -912,9 +912,9 @@ checksum = "308cc39be01b73d0d18f82a0e7b2a3df85245f84af96fdddc5d202d27e47b86a" [[package]] name = "memmap2" -version = "0.3.1" +version = "0.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "00b6c2ebff6180198788f5db08d7ce3bc1d0b617176678831a7510825973e357" +checksum = "4647a11b578fead29cdbb34d4adef8dd3dc35b876c9c6d5240d83f205abfe96e" dependencies = [ "libc", ] diff --git a/crates/proc_macro_api/Cargo.toml b/crates/proc_macro_api/Cargo.toml index 99b9ead0fc09..5b1655b91807 100644 --- a/crates/proc_macro_api/Cargo.toml +++ b/crates/proc_macro_api/Cargo.toml @@ -12,7 +12,7 @@ doctest = false serde = { version = "1.0", features = ["derive"] } serde_json = { version = "1.0", features = ["unbounded_depth"] } tracing = "0.1" -memmap2 = "0.3.0" +memmap2 = "0.5" snap = "1.0" paths = { path = "../paths", version = "0.0.0" } @@ -25,4 +25,4 @@ profile = { path = "../profile", version = "0.0.0" } [dependencies.object] version = "0.26" default-features = false -features = [ "std", "read_core", "elf", "macho", "pe" ] +features = ["std", "read_core", "elf", "macho", "pe"] diff --git a/crates/proc_macro_srv/Cargo.toml b/crates/proc_macro_srv/Cargo.toml index 159e2bfa40f5..d0e6bd9990bc 100644 --- a/crates/proc_macro_srv/Cargo.toml +++ b/crates/proc_macro_srv/Cargo.toml @@ -17,7 +17,7 @@ object = { version = "0.26", default-features = false, features = [ "pe", ] } libloading = "0.7.0" -memmap2 = "0.3.0" +memmap2 = "0.5" tt = { path = "../tt", version = "0.0.0" } mbe = { path = "../mbe", version = "0.0.0" }