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 = "1.0.38"
15client = { path = "../client" }
16editor = { path = "../editor" }
17language = { path = "../language" }
18log = "0.4"
19futures = "0.3"
20gpui = { path = "../gpui" }
21human_bytes = "0.4.1"
22isahc = "1.7"
23lazy_static = "1.4.0"
24postage = { version = "0.4", features = ["futures-traits"] }
25project = { path = "../project" }
26search = { path = "../search" }
27serde = { version = "1.0", features = ["derive", "rc"] }
28serde_derive = { version = "1.0", features = ["deserialize_in_place"] }
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" }