zed/crates/proto/Cargo.toml
Max Brunsfeld b8e6098f60
Consolidate logic for protobuf message handling between ssh and web socket clients (#17185)
This is a refactor to prepare for adding LSP support in SSH remote
projects.

Release Notes:

- N/A

---------

Co-authored-by: Mikayla <mikayla@zed.dev>
Co-authored-by: Conrad <conrad@zed.dev>
2024-09-01 10:14:21 -07:00

32 lines
651 B
TOML

[package]
description = "Shared protocol for communication between the Zed app and the zed.dev server"
edition = "2021"
name = "proto"
version = "0.1.0"
publish = false
license = "GPL-3.0-or-later"
[features]
test-support = ["collections/test-support"]
[lints]
workspace = true
[lib]
path = "src/proto.rs"
doctest = false
[dependencies]
anyhow.workspace = true
collections.workspace = true
futures.workspace = true
parking_lot.workspace = true
prost.workspace = true
serde.workspace = true
gpui.workspace = true
[build-dependencies]
prost-build.workspace = true
[dev-dependencies]
collections = { workspace = true, features = ["test-support"] }