Bump memmap2 from 0.3.1 to 0.5.0 in /src/agent (#1254)

This commit is contained in:
dependabot[bot]
2021-09-20 15:36:22 -04:00
committed by GitHub
parent 9463b6ebc8
commit 770b785654
3 changed files with 4 additions and 4 deletions

4
src/agent/Cargo.lock generated
View File

@ -1369,9 +1369,9 @@ checksum = "b16bd47d9e329435e309c58469fe0791c2d0d1ba96ec0954152a5ae2b04387dc"
[[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",
]

View File

@ -19,7 +19,7 @@ fixedbitset = "0.4"
goblin = "0.4"
iced-x86 = { version = "1.14", features = ["decoder", "op_code_info", "instr_info", "masm"] }
log = "0.4"
memmap2 = "0.3"
memmap2 = "0.5"
msvc-demangler = "0.9"
regex = "1.4"
rustc-demangle = "0.1"

View File

@ -11,7 +11,7 @@ fnv = "1.0"
goblin = "0.4"
iced-x86 = "1.14"
log = "0.4"
memmap2 = "0.3"
memmap2 = "0.5"
rand = "0.8"
serde = { version = "1.0", features = ["derive"] }
win-util = { path = "../win-util" }