Cargo.toml

 1[package]
 2name = "feedback"
 3version = "0.1.0"
 4edition = "2021"
 5publish = false
 6
 7[lib]
 8path = "src/feedback.rs"
 9
10[features]
11test-support = []
12
13[dependencies]
14anyhow.workspace = true
15client = { path = "../client" }
16editor = { path = "../editor" }
17language = { path = "../language" }
18log.workspace = true
19futures.workspace = true
20gpui = { path = "../gpui" }
21human_bytes = "0.4.1"
22isahc = "1.7"
23lazy_static.workspace = true
24postage.workspace = true
25project = { path = "../project" }
26search = { path = "../search" }
27serde.workspace = true
28serde_derive.workspace = true
29settings = { path = "../settings" }
30sysinfo = "0.27.1"
31theme = { path = "../theme" }
32tree-sitter-markdown = { git = "https://github.com/MDeiml/tree-sitter-markdown", rev = "330ecab87a3e3a7211ac69bbadc19eabecdb1cca" }
33urlencoding = "2.1.2"
34util = { path = "../util" }
35workspace = { path = "../workspace" }