mirror of
https://github.com/facebookexperimental/reverie.git
synced 2025-01-23 05:06:23 +00:00
third-party/rust: remove memmap and migrate to memmap2
Summary: `memmap` is unmaintained and hasn't been changed in over 4 years. `memmap2` is a fork, which is regularly maintained. Also bump dependency on `grep` as it removes the last third-party internal reference to memmap. Reviewed By: dtolnay Differential Revision: D43486158 fbshipit-source-id: f763848bd295facf60ec601620afd68dfc655bea
This commit is contained in:
parent
d51b9e8a1c
commit
d5cc9ef116
2 changed files with 2 additions and 2 deletions
|
@ -17,7 +17,7 @@ gimli = "0.26"
|
|||
lazy_static = "1.4"
|
||||
libc = "0.2.139"
|
||||
linked-hash-map = { version = "0.5", features = ["serde_impl"] }
|
||||
memmap = "0.7"
|
||||
memmap2 = "0.5.10"
|
||||
never-say-never = "6"
|
||||
nix = "0.25"
|
||||
object = { version = "0.29", features = ["write"] }
|
||||
|
|
|
@ -16,7 +16,7 @@ use std::path::PathBuf;
|
|||
|
||||
use gimli::EndianSlice;
|
||||
use gimli::RunTimeEndian as Endian;
|
||||
use memmap::Mmap;
|
||||
use memmap2::Mmap;
|
||||
use object::Object as _;
|
||||
use object::ObjectSegment;
|
||||
use object::SymbolMapName;
|
||||
|
|
Loading…
Reference in a new issue