Removes fs-err dependency (#34911)
This commit is contained in:
parent
7ebe0bccd6
commit
3303c2566c
|
@ -2028,15 +2028,6 @@ version = "2.0.0"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "6c2141d6d6c8512188a7891b4b01590a45f6dac67afb4f255c4124dbb86d4eaa"
|
checksum = "6c2141d6d6c8512188a7891b4b01590a45f6dac67afb4f255c4124dbb86d4eaa"
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "fs-err"
|
|
||||||
version = "2.11.0"
|
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
||||||
checksum = "88a41f105fe1d5b6b34b2055e3dc59bb79b46b48b2040b9e6c7b4b5de097aa41"
|
|
||||||
dependencies = [
|
|
||||||
"autocfg",
|
|
||||||
]
|
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "fs_extra"
|
name = "fs_extra"
|
||||||
version = "1.3.0"
|
version = "1.3.0"
|
||||||
|
@ -7033,7 +7024,6 @@ dependencies = [
|
||||||
"ed25519-dalek",
|
"ed25519-dalek",
|
||||||
"flate2",
|
"flate2",
|
||||||
"fnv",
|
"fnv",
|
||||||
"fs-err",
|
|
||||||
"im",
|
"im",
|
||||||
"index_list",
|
"index_list",
|
||||||
"itertools",
|
"itertools",
|
||||||
|
|
|
@ -201,7 +201,6 @@ fast-math = "0.1"
|
||||||
fd-lock = "3.0.13"
|
fd-lock = "3.0.13"
|
||||||
flate2 = "1.0.28"
|
flate2 = "1.0.28"
|
||||||
fnv = "1.0.7"
|
fnv = "1.0.7"
|
||||||
fs-err = "2.11.0"
|
|
||||||
fs_extra = "1.3.0"
|
fs_extra = "1.3.0"
|
||||||
futures = "0.3.30"
|
futures = "0.3.30"
|
||||||
futures-util = "0.3.29"
|
futures-util = "0.3.29"
|
||||||
|
|
|
@ -1732,15 +1732,6 @@ version = "2.0.0"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "6c2141d6d6c8512188a7891b4b01590a45f6dac67afb4f255c4124dbb86d4eaa"
|
checksum = "6c2141d6d6c8512188a7891b4b01590a45f6dac67afb4f255c4124dbb86d4eaa"
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "fs-err"
|
|
||||||
version = "2.11.0"
|
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
||||||
checksum = "88a41f105fe1d5b6b34b2055e3dc59bb79b46b48b2040b9e6c7b4b5de097aa41"
|
|
||||||
dependencies = [
|
|
||||||
"autocfg",
|
|
||||||
]
|
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "fs_extra"
|
name = "fs_extra"
|
||||||
version = "1.3.0"
|
version = "1.3.0"
|
||||||
|
@ -5738,7 +5729,6 @@ dependencies = [
|
||||||
"dir-diff",
|
"dir-diff",
|
||||||
"flate2",
|
"flate2",
|
||||||
"fnv",
|
"fnv",
|
||||||
"fs-err",
|
|
||||||
"im",
|
"im",
|
||||||
"index_list",
|
"index_list",
|
||||||
"itertools",
|
"itertools",
|
||||||
|
|
|
@ -24,7 +24,6 @@ dashmap = { workspace = true, features = ["rayon", "raw-api"] }
|
||||||
dir-diff = { workspace = true }
|
dir-diff = { workspace = true }
|
||||||
flate2 = { workspace = true }
|
flate2 = { workspace = true }
|
||||||
fnv = { workspace = true }
|
fnv = { workspace = true }
|
||||||
fs-err = { workspace = true }
|
|
||||||
im = { workspace = true, features = ["rayon", "serde"] }
|
im = { workspace = true, features = ["rayon", "serde"] }
|
||||||
index_list = { workspace = true }
|
index_list = { workspace = true }
|
||||||
itertools = { workspace = true }
|
itertools = { workspace = true }
|
||||||
|
|
Loading…
Reference in New Issue