mirror of
https://github.com/zed-industries/zed.git
synced 2024-11-07 20:39:04 +03:00
Upgrade async-compression dep
This commit is contained in:
parent
a8d96790cf
commit
2d18b949ad
4
Cargo.lock
generated
4
Cargo.lock
generated
@ -454,9 +454,9 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "async-compression"
|
name = "async-compression"
|
||||||
version = "0.3.15"
|
version = "0.4.5"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "942c7cd7ae39e91bde4820d74132e9862e62c2f386c3aa90ccf55949f5bad63a"
|
checksum = "bc2d0cfb2a7388d34f590e76686704c494ed7aaceed62ee1ba35cbf363abc2a5"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"flate2",
|
"flate2",
|
||||||
"futures-core",
|
"futures-core",
|
||||||
|
@ -136,6 +136,7 @@ resolver = "2"
|
|||||||
[workspace.dependencies]
|
[workspace.dependencies]
|
||||||
anyhow = { version = "1.0.57" }
|
anyhow = { version = "1.0.57" }
|
||||||
async-trait = { version = "0.1" }
|
async-trait = { version = "0.1" }
|
||||||
|
async-compression = { version = "0.4", features = ["gzip", "futures-io"] }
|
||||||
# TODO: Switch back to the published version of `ctor` once:
|
# TODO: Switch back to the published version of `ctor` once:
|
||||||
# 1. A new version of `ctor` is published with this change: https://github.com/mmastrac/rust-ctor/pull/295
|
# 1. A new version of `ctor` is published with this change: https://github.com/mmastrac/rust-ctor/pull/295
|
||||||
# 2. We've confirmed it's fine to update to the latest version of `ctor` (we're currently on v0.1.20).
|
# 2. We've confirmed it's fine to update to the latest version of `ctor` (we're currently on v0.1.20).
|
||||||
|
@ -28,7 +28,7 @@ theme = { path = "../theme" }
|
|||||||
lsp = { path = "../lsp" }
|
lsp = { path = "../lsp" }
|
||||||
node_runtime = { path = "../node_runtime"}
|
node_runtime = { path = "../node_runtime"}
|
||||||
util = { path = "../util" }
|
util = { path = "../util" }
|
||||||
async-compression = { version = "0.3", features = ["gzip", "futures-bufread"] }
|
async-compression.workspace = true
|
||||||
async-tar = "0.4.2"
|
async-tar = "0.4.2"
|
||||||
anyhow.workspace = true
|
anyhow.workspace = true
|
||||||
log.workspace = true
|
log.workspace = true
|
||||||
|
@ -29,7 +29,7 @@ lsp = { package = "lsp2", path = "../lsp2" }
|
|||||||
node_runtime = { path = "../node_runtime"}
|
node_runtime = { path = "../node_runtime"}
|
||||||
util = { path = "../util" }
|
util = { path = "../util" }
|
||||||
ui = { package = "ui2", path = "../ui2" }
|
ui = { package = "ui2", path = "../ui2" }
|
||||||
async-compression = { version = "0.3", features = ["gzip", "futures-bufread"] }
|
async-compression.workspace = true
|
||||||
async-tar = "0.4.2"
|
async-tar = "0.4.2"
|
||||||
anyhow.workspace = true
|
anyhow.workspace = true
|
||||||
log.workspace = true
|
log.workspace = true
|
||||||
|
@ -10,7 +10,7 @@ doctest = false
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
util = { path = "../util" }
|
util = { path = "../util" }
|
||||||
async-compression = { version = "0.3", features = ["gzip", "futures-bufread"] }
|
async-compression.workspace = true
|
||||||
async-tar = "0.4.2"
|
async-tar = "0.4.2"
|
||||||
futures.workspace = true
|
futures.workspace = true
|
||||||
async-trait.workspace = true
|
async-trait.workspace = true
|
||||||
|
@ -78,7 +78,7 @@ workspace = { path = "../workspace" }
|
|||||||
welcome = { path = "../welcome" }
|
welcome = { path = "../welcome" }
|
||||||
zed-actions = {path = "../zed-actions"}
|
zed-actions = {path = "../zed-actions"}
|
||||||
anyhow.workspace = true
|
anyhow.workspace = true
|
||||||
async-compression = { version = "0.3", features = ["gzip", "futures-bufread"] }
|
async-compression.workspace = true
|
||||||
async-tar = "0.4.2"
|
async-tar = "0.4.2"
|
||||||
async-recursion = "0.3"
|
async-recursion = "0.3"
|
||||||
async-trait.workspace = true
|
async-trait.workspace = true
|
||||||
|
@ -74,7 +74,7 @@ workspace = { package = "workspace2", path = "../workspace2" }
|
|||||||
welcome = { package = "welcome2", path = "../welcome2" }
|
welcome = { package = "welcome2", path = "../welcome2" }
|
||||||
zed_actions = {package = "zed_actions2", path = "../zed_actions2"}
|
zed_actions = {package = "zed_actions2", path = "../zed_actions2"}
|
||||||
anyhow.workspace = true
|
anyhow.workspace = true
|
||||||
async-compression = { version = "0.3", features = ["gzip", "futures-bufread"] }
|
async-compression.workspace = true
|
||||||
async-tar = "0.4.2"
|
async-tar = "0.4.2"
|
||||||
async-recursion = "0.3"
|
async-recursion = "0.3"
|
||||||
async-trait.workspace = true
|
async-trait.workspace = true
|
||||||
|
Loading…
Reference in New Issue
Block a user