1
1
mirror of https://github.com/wez/wezterm.git synced 2024-11-22 13:16:39 +03:00

deps: remove duplicate memmap2

This commit is contained in:
Wez Furlong 2024-05-13 11:45:47 -07:00
parent 6ad0da98d8
commit 90822d64a3
No known key found for this signature in database
GPG Key ID: 7A7F66A31EC9B387
2 changed files with 2 additions and 11 deletions

11
Cargo.lock generated
View File

@ -3092,15 +3092,6 @@ version = "2.7.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6c8640c5d730cb13ebd907d8d04b52f55ac9a2eec55b440c8892f40d56c76c1d"
[[package]]
name = "memmap2"
version = "0.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "723e3ebdcdc5c023db1df315364573789f8857c11b631a2fdfad7c00f5c046b4"
dependencies = [
"libc",
]
[[package]]
name = "memmap2"
version = "0.8.0"
@ -6383,7 +6374,7 @@ dependencies = [
"lazy_static",
"lfucache",
"log",
"memmap2 0.2.3",
"memmap2 0.9.4",
"metrics",
"objc",
"ordered-float",

View File

@ -27,7 +27,7 @@ image = "0.25"
lazy_static = "1.4"
lfucache = { path = "../lfucache" }
log = "0.4"
memmap2 = "0.2"
memmap2 = "0.9"
metrics = "0.22"
ordered-float = "4.1"
rangeset = { path = "../rangeset" }