From de3d37e070d7e903ad6f85cabeae5358ae349c76 Mon Sep 17 00:00:00 2001 From: Antonio Scandurra Date: Fri, 3 Nov 2023 14:53:08 +0100 Subject: [PATCH] Don't depend on gpui2 in text --- Cargo.lock | 2 +- crates/text/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 803ae775e4572d2c9c447be0673320f4f972d478..d5d049393631d8df2334064a405816c063b1a37a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -8881,7 +8881,7 @@ dependencies = [ "ctor", "digest 0.9.0", "env_logger 0.9.3", - "gpui2", + "gpui", "lazy_static", "log", "parking_lot 0.11.2", diff --git a/crates/text/Cargo.toml b/crates/text/Cargo.toml index 5a21500b2ff521182833dadb09ed7b1f8bfc6f8f..d1bc6cc8f8e6826c0f50f3f2fa15b28fe3ca8161 100644 --- a/crates/text/Cargo.toml +++ b/crates/text/Cargo.toml @@ -30,7 +30,7 @@ regex.workspace = true [dev-dependencies] collections = { path = "../collections", features = ["test-support"] } -gpui = { package = "gpui2", path = "../gpui2", features = ["test-support"] } +gpui = { path = "../gpui", features = ["test-support"] } util = { path = "../util", features = ["test-support"] } ctor.workspace = true env_logger.workspace = true