Cargo.toml

 1[package]
 2name = "feedback"
 3version = "0.1.0"
 4edition = "2021"
 5publish = false
 6license = "GPL-3.0-or-later"
 7
 8[lib]
 9path = "src/feedback.rs"
10
11[features]
12test-support = []
13
14[dependencies]
15anyhow.workspace = true
16bitflags = "2.4.1"
17client = { path = "../client" }
18db = { path = "../db" }
19editor = { path = "../editor" }
20futures.workspace = true
21gpui = { path = "../gpui" }
22human_bytes = "0.4.1"
23isahc.workspace = true
24language = { path = "../language" }
25lazy_static.workspace = true
26log.workspace = true
27menu = { path = "../menu" }
28postage.workspace = true
29project = { path = "../project" }
30regex.workspace = true
31release_channel = { path = "../release_channel" }
32serde.workspace = true
33serde_derive.workspace = true
34serde_json.workspace = true
35settings = { path = "../settings" }
36smallvec.workspace = true
37smol.workspace = true
38sysinfo.workspace = true
39theme = { path = "../theme" }
40tree-sitter-markdown = { git = "https://github.com/MDeiml/tree-sitter-markdown", rev = "330ecab87a3e3a7211ac69bbadc19eabecdb1cca" }
41ui = { path = "../ui" }
42urlencoding = "2.1.2"
43util = { path = "../util" }
44workspace = { path = "../workspace" }
45
46[dev-dependencies]
47editor = { path = "../editor", features = ["test-support"] }