diff --git a/Cargo.lock b/Cargo.lock index b3aafb5d626ad6e2394fdc7c40f21b4e8eabb2d7..846fd7b127b977297b0e94aa70cab27c0ecc840f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -5298,7 +5298,7 @@ dependencies = [ "node_runtime", "postage", "project", - "rpc", + "proto", "settings", "shellexpand 2.1.2", "signal-hook", diff --git a/crates/headless/Cargo.toml b/crates/headless/Cargo.toml index 6cbc3f4f326de891de29c2b70d798b4abf805533..209e843c0410a796665451fc6849f6d194f99e79 100644 --- a/crates/headless/Cargo.toml +++ b/crates/headless/Cargo.toml @@ -19,11 +19,11 @@ extension.workspace = true signal-hook.workspace = true gpui.workspace = true log.workspace = true -rpc.workspace = true util.workspace = true node_runtime.workspace = true language.workspace = true project.workspace = true +proto.workspace = true fs.workspace = true futures.workspace = true settings.workspace = true @@ -34,5 +34,4 @@ postage.workspace = true client = { workspace = true, features = ["test-support"] } fs = { workspace = true, features = ["test-support"] } gpui = { workspace = true, features = ["test-support"] } -rpc = { workspace = true, features = ["test-support"] } util = { workspace = true, features = ["test-support"] } diff --git a/crates/headless/src/headless.rs b/crates/headless/src/headless.rs index 1405577643606a803d39f1fb4fdad42031a2691e..6f8f42fc0f77f09140a6129d6f332097e1b35c2c 100644 --- a/crates/headless/src/headless.rs +++ b/crates/headless/src/headless.rs @@ -9,7 +9,7 @@ use language::LanguageRegistry; use node_runtime::NodeRuntime; use postage::stream::Stream; use project::Project; -use rpc::{proto, ErrorCode, TypedEnvelope}; +use proto::{self, ErrorCode, TypedEnvelope}; use settings::{Settings, SettingsStore}; use std::path::Path; use std::{collections::HashMap, sync::Arc};