Cargo.toml
1[package]
2name = "chat_panel"
3version = "0.1.0"
4edition = "2018"
5
6[lib]
7path = "src/chat_panel.rs"
8
9[dependencies]
10client = { path = "../client" }
11editor = { path = "../editor" }
12gpui = { path = "../gpui" }
13theme = { path = "../theme" }
14util = { path = "../util" }
15workspace = { path = "../workspace" }
16postage = { version = "0.4.1", features = ["futures-traits"] }
17time = "0.3"