Cargo.toml

 1[package]
 2description = "Shared logic for communication between the Zed app and the zed.dev server"
 3edition = "2018"
 4name = "zed-rpc"
 5version = "0.1.0"
 6
 7[dependencies]
 8anyhow = "1.0"
 9async-lock = "2.4"
10base64 = "0.13"
11futures = "0.3"
12log = "0.4"
13postage = {version = "0.4.1", features = ["futures-traits"]}
14prost = "0.7"
15rand = "0.8"
16rsa = "0.4"
17serde = {version = "1", features = ["derive"]}
18
19[build-dependencies]
20prost-build = {git = "https://github.com/tokio-rs/prost", rev = "6cf97ea422b09d98de34643c4dda2d4f8b7e23e6"}
21
22[dev-dependencies]
23smol = "1.2.5"
24tempdir = "0.3.7"