ZIm/crates/proto/Cargo.toml
Conrad Irwin afb0fd609b
Chunk git status entries (#25627)
Prevents us trying to write 5M untracked files to postgres in one commit

Release Notes:

- N/A *or* Added/Fixed/Improved ...
2025-02-26 12:38:16 -07:00

28 lines
563 B
TOML

[package]
description = "Shared protocol for communication between the Zed app and the zed.dev server"
edition.workspace = true
name = "proto"
version = "0.1.0"
publish.workspace = true
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
prost.workspace = true
serde.workspace = true
[build-dependencies]
prost-build.workspace = true
[dev-dependencies]
collections = { workspace = true, features = ["test-support"] }