about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--Cargo.lock4
-rw-r--r--crates/proc_macro_api/Cargo.toml4
-rw-r--r--crates/proc_macro_srv/Cargo.toml2
3 files changed, 5 insertions, 5 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 04a0529eabf..06ae6fccfd5 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 99b9ead0fc0..5b1655b9180 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 159e2bfa40f..d0e6bd9990b 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" }