Cargo.toml

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