From e34ebbc665ff2b10bfb686c9b79db7d9b9bb11e4 Mon Sep 17 00:00:00 2001 From: Max Brunsfeld Date: Thu, 28 Sep 2023 16:56:39 -0700 Subject: [PATCH] Remove unused dependencies on theme --- Cargo.lock | 4 ---- crates/call/Cargo.toml | 1 - crates/channel/Cargo.toml | 1 - crates/client/Cargo.toml | 1 - crates/project/Cargo.toml | 1 - 5 files changed, 8 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index b675614376..983f6946ab 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1106,7 +1106,6 @@ dependencies = [ "serde_derive", "serde_json", "settings", - "theme", "util", ] @@ -1247,7 +1246,6 @@ dependencies = [ "sum_tree", "tempfile", "text", - "theme", "thiserror", "time", "tiny_http", @@ -1419,7 +1417,6 @@ dependencies = [ "sum_tree", "tempfile", "text", - "theme", "thiserror", "time", "tiny_http", @@ -5552,7 +5549,6 @@ dependencies = [ "tempdir", "terminal", "text", - "theme", "thiserror", "toml 0.5.11", "unindent", diff --git a/crates/call/Cargo.toml b/crates/call/Cargo.toml index 716bc3c27b..b4e94fe56c 100644 --- a/crates/call/Cargo.toml +++ b/crates/call/Cargo.toml @@ -31,7 +31,6 @@ language = { path = "../language" } media = { path = "../media" } project = { path = "../project" } settings = { path = "../settings" } -theme = { path = "../theme" } util = { path = "../util" } anyhow.workspace = true diff --git a/crates/channel/Cargo.toml b/crates/channel/Cargo.toml index e3a74ecbe6..16a1d418d5 100644 --- a/crates/channel/Cargo.toml +++ b/crates/channel/Cargo.toml @@ -23,7 +23,6 @@ language = { path = "../language" } settings = { path = "../settings" } feature_flags = { path = "../feature_flags" } sum_tree = { path = "../sum_tree" } -theme = { path = "../theme" } anyhow.workspace = true futures.workspace = true diff --git a/crates/client/Cargo.toml b/crates/client/Cargo.toml index 2bd03d789f..e3038e5bcc 100644 --- a/crates/client/Cargo.toml +++ b/crates/client/Cargo.toml @@ -21,7 +21,6 @@ text = { path = "../text" } settings = { path = "../settings" } feature_flags = { path = "../feature_flags" } sum_tree = { path = "../sum_tree" } -theme = { path = "../theme" } anyhow.workspace = true async-recursion = "0.3" diff --git a/crates/project/Cargo.toml b/crates/project/Cargo.toml index 07f1bfa43e..ffea6646e9 100644 --- a/crates/project/Cargo.toml +++ b/crates/project/Cargo.toml @@ -35,7 +35,6 @@ rpc = { path = "../rpc" } settings = { path = "../settings" } sum_tree = { path = "../sum_tree" } terminal = { path = "../terminal" } -theme = { path = "../theme" } util = { path = "../util" } aho-corasick = "1.1"