Cargo.toml

 1[package]
 2name = "call"
 3version = "0.1.0"
 4edition = "2021"
 5
 6[lib]
 7path = "src/call.rs"
 8doctest = false
 9
10[features]
11test-support = [
12    "client/test-support",
13    "collections/test-support",
14    "gpui/test-support",
15    "project/test-support",
16    "util/test-support"
17]
18
19[dependencies]
20client = { path = "../client" }
21collections = { path = "../collections" }
22gpui = { path = "../gpui" }
23project = { path = "../project" }
24util = { path = "../util" }
25
26anyhow = "1.0.38"
27futures = "0.3"
28postage = { version = "0.4.1", features = ["futures-traits"] }
29
30[dev-dependencies]
31client = { path = "../client", features = ["test-support"] }
32collections = { path = "../collections", features = ["test-support"] }
33gpui = { path = "../gpui", features = ["test-support"] }
34project = { path = "../project", features = ["test-support"] }
35util = { path = "../util", features = ["test-support"] }