Update dependencies.
This commit is contained in:
parent
74abc339b7
commit
9bc4887d55
3 changed files with 10 additions and 8 deletions
4
Cargo.lock
generated
4
Cargo.lock
generated
|
|
@ -2893,7 +2893,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "e310b3a6b5907f99202fcdb4960ff45b93735d7c7d96b760fcff8db2dc0e103d"
|
checksum = "e310b3a6b5907f99202fcdb4960ff45b93735d7c7d96b760fcff8db2dc0e103d"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"cfg-if",
|
"cfg-if",
|
||||||
"windows-targets 0.52.6",
|
"windows-targets 0.48.5",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
|
|
@ -6360,7 +6360,7 @@ dependencies = [
|
||||||
"serde",
|
"serde",
|
||||||
"smallvec",
|
"smallvec",
|
||||||
"ui",
|
"ui",
|
||||||
"windows 0.57.0",
|
"windows 0.58.0",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
|
|
|
||||||
|
|
@ -6,6 +6,7 @@ resolver = "2"
|
||||||
|
|
||||||
[workspace.dependencies]
|
[workspace.dependencies]
|
||||||
gpui = { git = "https://github.com/huacnlee/zed.git", branch = "export-platform-window" }
|
gpui = { git = "https://github.com/huacnlee/zed.git", branch = "export-platform-window" }
|
||||||
|
windows = { version = "0.58.0", features = ["Wdk", "Wdk_System", "Wdk_System_SystemServices"] }
|
||||||
ui = { path = "crates/ui" }
|
ui = { path = "crates/ui" }
|
||||||
story = { path = "crates/story" }
|
story = { path = "crates/story" }
|
||||||
workspace = { path = "crates/workspace" }
|
workspace = { path = "crates/workspace" }
|
||||||
|
|
@ -13,6 +14,7 @@ anyhow = "1"
|
||||||
log = "0.4"
|
log = "0.4"
|
||||||
serde = "1.0.203"
|
serde = "1.0.203"
|
||||||
serde_json = "1"
|
serde_json = "1"
|
||||||
|
smallvec = "1"
|
||||||
|
|
||||||
[workspace.lints.clippy]
|
[workspace.lints.clippy]
|
||||||
almost_complete_range = "allow"
|
almost_complete_range = "allow"
|
||||||
|
|
|
||||||
|
|
@ -7,12 +7,12 @@ edition = "2021"
|
||||||
gpui.workspace = true
|
gpui.workspace = true
|
||||||
ui.workspace = true
|
ui.workspace = true
|
||||||
anyhow.workspace = true
|
anyhow.workspace = true
|
||||||
windows = { version = "0.57.0", features = ["Wdk", "Wdk_System", "Wdk_System_SystemServices"] }
|
windows.workspace = true
|
||||||
schemars = "0.7.0"
|
schemars = "0"
|
||||||
parking_lot = "0.12.1"
|
parking_lot = "0"
|
||||||
serde = "1.0.203"
|
serde.workspace = true
|
||||||
smallvec = "1.13.2"
|
smallvec.workspace = true
|
||||||
log = "0"
|
log.workspace = true
|
||||||
|
|
||||||
[lints]
|
[lints]
|
||||||
workspace = true
|
workspace = true
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue