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.7"
20rand = "0.8"
21rsa = "0.4"
22serde = { version = "1", features = ["derive"] }
23
24[build-dependencies]
25prost-build = { git = "https://github.com/tokio-rs/prost", rev = "6cf97ea422b09d98de34643c4dda2d4f8b7e23e6" }
26
27[dev-dependencies]
28smol = "1.2.5"
29tempdir = "0.3.7"