diff options
author | memoryruins <[email protected]> | 2021-05-04 01:20:47 +0100 |
---|---|---|
committer | memoryruins <[email protected]> | 2021-05-04 01:20:47 +0100 |
commit | 27ba1dd8e32eac77f23fd23f4f8685604d3027a2 (patch) | |
tree | df6f208332dee0917944e96265432d70b209b271 /crates/proc_macro_api/src | |
parent | a0ec841bfee8ee70a9dbc25203875a3a94ba6c4f (diff) |
Replace `memmap` to `memmap2` in `proc_macro_api`
Diffstat (limited to 'crates/proc_macro_api/src')
-rw-r--r-- | crates/proc_macro_api/src/version.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/proc_macro_api/src/version.rs b/crates/proc_macro_api/src/version.rs index dcf8fae8f..6dbac50b4 100644 --- a/crates/proc_macro_api/src/version.rs +++ b/crates/proc_macro_api/src/version.rs | |||
@@ -6,7 +6,7 @@ use std::{ | |||
6 | path::Path, | 6 | path::Path, |
7 | }; | 7 | }; |
8 | 8 | ||
9 | use memmap::Mmap; | 9 | use memmap2::Mmap; |
10 | use object::read::{File as BinaryFile, Object, ObjectSection}; | 10 | use object::read::{File as BinaryFile, Object, ObjectSection}; |
11 | use snap::read::FrameDecoder as SnapDecoder; | 11 | use snap::read::FrameDecoder as SnapDecoder; |
12 | 12 | ||