From 841e010fa4d7f1658463a609e51df5c76ca4fdf5 Mon Sep 17 00:00:00 2001 From: Marshall Bowers Date: Sun, 25 Feb 2024 18:52:59 -0500 Subject: [PATCH] Hoist `chrono` dependency to workspace level (#8414) This PR hoists the `chrono` dependency to the workspace level. Release Notes: - N/A --- crates/client/Cargo.toml | 2 +- crates/journal/Cargo.toml | 2 +- crates/ui/Cargo.toml | 2 +- crates/zed/Cargo.toml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/crates/client/Cargo.toml b/crates/client/Cargo.toml index 5ecd14b25797651db4c23fc38ee1ce1b7dc520b4..57d0be23db9e31c1d95d5abf92cc194814eec83e 100644 --- a/crates/client/Cargo.toml +++ b/crates/client/Cargo.toml @@ -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 diff --git a/crates/journal/Cargo.toml b/crates/journal/Cargo.toml index c6962fdc470416d2fa309f96546f50c66ac6d6c1..0e109d8905a72f780eb5b2e4ea39f125019f2616 100644 --- a/crates/journal/Cargo.toml +++ b/crates/journal/Cargo.toml @@ -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 diff --git a/crates/ui/Cargo.toml b/crates/ui/Cargo.toml index 26fece87a2033171c25895ff368358ced0da376b..10b92744a7f8971dcc27e77ee627cfd6ea35ca43 100644 --- a/crates/ui/Cargo.toml +++ b/crates/ui/Cargo.toml @@ -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 diff --git a/crates/zed/Cargo.toml b/crates/zed/Cargo.toml index df39e2cb18f7801c2ce1d1382c97f31f03082f7f..0d04f80203403ceaafbed68f9220885f2b6e7495 100644 --- a/crates/zed/Cargo.toml +++ b/crates/zed/Cargo.toml @@ -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