2024-06-10 18:49:53 +00:00
|
|
|
[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
|
2024-07-12 22:25:54 +00:00
|
|
|
futures.workspace = true
|
2024-06-10 18:49:53 +00:00
|
|
|
prost.workspace = true
|
|
|
|
serde.workspace = true
|
|
|
|
|
|
|
|
[build-dependencies]
|
|
|
|
prost-build.workspace = true
|
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
collections = { workspace = true, features = ["test-support"] }
|