Cargo.toml

 1[package]
 2description = "Shared logic for communication between the Zed app and the zed.dev server"
 3edition = "2018"
 4name = "zrpc"
 5version = "0.1.0"
 6
 7[features]
 8test-support = []
 9
10[dependencies]
11anyhow = "1.0"
12async-lock = "2.4"
13async-tungstenite = "0.14"
14base64 = "0.13"
15futures = "0.3"
16log = "0.4"
17parking_lot = "0.11.1"
18postage = { version = "0.4.1", features = ["futures-traits"] }
19prost = "0.8"
20rand = "0.8"
21rsa = "0.4"
22serde = { version = "1", features = ["derive"] }
23zstd = "0.9"
24
25[build-dependencies]
26prost-build = "0.8"
27
28[dev-dependencies]
29smol = "1.2.5"
30tempdir = "0.3.7"