aboutsummaryrefslogtreecommitdiff
path: root/Cargo.lock
diff options
context:
space:
mode:
authorbors[bot] <26634292+bors[bot]@users.noreply.github.com>2021-05-04 04:41:48 +0100
committerGitHub <[email protected]>2021-05-04 04:41:48 +0100
commit2350b3f05f96a4a9ed81dc5bde246a1ef1d0da41 (patch)
treedf6f208332dee0917944e96265432d70b209b271 /Cargo.lock
parenta0ec841bfee8ee70a9dbc25203875a3a94ba6c4f (diff)
parent27ba1dd8e32eac77f23fd23f4f8685604d3027a2 (diff)
Merge #8716
8716: Replace `memmap` with `memmap2` in `proc_macro_api` r=edwin0cheng a=memoryruins #7522 did the same for `proc_macro_srv` before this usage of `memmap` was introduced to `proc_macro_api` in #6822 . Something like [`cargo-deny`](https://github.com/EmbarkStudios/cargo-deny-action) could help prevent specific crates (and versions, licenses, etc) from being introduced into the crate tree, but that's unrelated to this pull request. Co-authored-by: memoryruins <[email protected]>
Diffstat (limited to 'Cargo.lock')
-rw-r--r--Cargo.lock12
1 files changed, 1 insertions, 11 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 1cfd704f6..0ca0b7b63 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -903,16 +903,6 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
903checksum = "b16bd47d9e329435e309c58469fe0791c2d0d1ba96ec0954152a5ae2b04387dc" 903checksum = "b16bd47d9e329435e309c58469fe0791c2d0d1ba96ec0954152a5ae2b04387dc"
904 904
905[[package]] 905[[package]]
906name = "memmap"
907version = "0.7.0"
908source = "registry+https://github.com/rust-lang/crates.io-index"
909checksum = "6585fd95e7bb50d6cc31e20d4cf9afb4e2ba16c5846fc76793f11218da9c475b"
910dependencies = [
911 "libc",
912 "winapi",
913]
914
915[[package]]
916name = "memmap2" 906name = "memmap2"
917version = "0.2.2" 907version = "0.2.2"
918source = "registry+https://github.com/rust-lang/crates.io-index" 908source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -1174,7 +1164,7 @@ dependencies = [
1174 "crossbeam-channel", 1164 "crossbeam-channel",
1175 "jod-thread", 1165 "jod-thread",
1176 "log", 1166 "log",
1177 "memmap", 1167 "memmap2",
1178 "object", 1168 "object",
1179 "profile", 1169 "profile",
1180 "serde", 1170 "serde",