Skip to content

Commit

Permalink
Hoist chrono dependency to workspace level (zed-industries#8414)
Browse files Browse the repository at this point in the history
This PR hoists the `chrono` dependency to the workspace level.

Release Notes:

- N/A
  • Loading branch information
maxdeviant authored Feb 25, 2024
1 parent ffdda58 commit 841e010
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion crates/client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ doctest = false
test-support = ["clock/test-support", "collections/test-support", "gpui/test-support", "rpc/test-support"]

[dependencies]
chrono = { version = "0.4", features = ["serde"] }
chrono = { workspace = true, features = ["serde"] }
clock.workspace = true
collections.workspace = true
db.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion crates/journal/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ doctest = false

[dependencies]
anyhow.workspace = true
chrono = "0.4"
chrono.workspace = true
dirs = "4.0"
editor.workspace = true
gpui.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion crates/ui/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ path = "src/ui.rs"

[dependencies]
anyhow.workspace = true
chrono = "0.4"
chrono.workspace = true
gpui.workspace = true
itertools = { version = "0.11.0", optional = true }
menu.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion crates/zed/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ backtrace = "0.3"
breadcrumbs.workspace = true
call.workspace = true
channel.workspace = true
chrono = "0.4"
chrono.workspace = true
cli.workspace = true
client.workspace = true
clock.workspace = true
Expand Down

0 comments on commit 841e010

Please sign in to comment.