diff options
author | bors[bot] <26634292+bors[bot]@users.noreply.github.com> | 2021-02-02 15:27:01 +0000 |
---|---|---|
committer | GitHub <[email protected]> | 2021-02-02 15:27:01 +0000 |
commit | 042e07d89171fa5dd8ba4fc572c183687382c0d7 (patch) | |
tree | 44fb974cd5cf5ced041a3f0097f015208169d3c5 /crates/proc_macro_srv/src | |
parent | a02a7a9aa6250dd35f0e7d5ac7e83ee9711793e6 (diff) | |
parent | 953883ca546ac0c860d171de26baf1121226091c (diff) |
Merge #7522
7522: Use non-deprecated memmap2 crate r=kjeremy a=kjeremy
`cargo audit` complains that `memmap` is unmaintained so switch to
RazrFalcon's maintained version.
Removes yet another edge on winapi
Co-authored-by: kjeremy <[email protected]>
Diffstat (limited to 'crates/proc_macro_srv/src')
-rw-r--r-- | crates/proc_macro_srv/src/dylib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/proc_macro_srv/src/dylib.rs b/crates/proc_macro_srv/src/dylib.rs index 4e719f3aa..00fcc7bdf 100644 --- a/crates/proc_macro_srv/src/dylib.rs +++ b/crates/proc_macro_srv/src/dylib.rs | |||
@@ -7,7 +7,7 @@ use std::{ | |||
7 | }; | 7 | }; |
8 | 8 | ||
9 | use libloading::Library; | 9 | use libloading::Library; |
10 | use memmap::Mmap; | 10 | use memmap2::Mmap; |
11 | use object::Object; | 11 | use object::Object; |
12 | use proc_macro_api::ProcMacroKind; | 12 | use proc_macro_api::ProcMacroKind; |
13 | 13 | ||