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"
|
||||
dependencies = [
|
||||
"cfg-if",
|
||||
"windows-targets 0.52.6",
|
||||
"windows-targets 0.48.5",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
|
|
@ -6360,7 +6360,7 @@ dependencies = [
|
|||
"serde",
|
||||
"smallvec",
|
||||
"ui",
|
||||
"windows 0.57.0",
|
||||
"windows 0.58.0",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
|
|
|
|||
|
|
@ -6,6 +6,7 @@ resolver = "2"
|
|||
|
||||
[workspace.dependencies]
|
||||
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" }
|
||||
story = { path = "crates/story" }
|
||||
workspace = { path = "crates/workspace" }
|
||||
|
|
@ -13,6 +14,7 @@ anyhow = "1"
|
|||
log = "0.4"
|
||||
serde = "1.0.203"
|
||||
serde_json = "1"
|
||||
smallvec = "1"
|
||||
|
||||
[workspace.lints.clippy]
|
||||
almost_complete_range = "allow"
|
||||
|
|
|
|||
|
|
@ -7,12 +7,12 @@ edition = "2021"
|
|||
gpui.workspace = true
|
||||
ui.workspace = true
|
||||
anyhow.workspace = true
|
||||
windows = { version = "0.57.0", features = ["Wdk", "Wdk_System", "Wdk_System_SystemServices"] }
|
||||
schemars = "0.7.0"
|
||||
parking_lot = "0.12.1"
|
||||
serde = "1.0.203"
|
||||
smallvec = "1.13.2"
|
||||
log = "0"
|
||||
windows.workspace = true
|
||||
schemars = "0"
|
||||
parking_lot = "0"
|
||||
serde.workspace = true
|
||||
smallvec.workspace = true
|
||||
log.workspace = true
|
||||
|
||||
[lints]
|
||||
workspace = true
|
||||
|
|
|
|||
Loading…
Reference in a new issue