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]
14client = { path = "../client" }
15editor = { path = "../editor" }
16language = { path = "../language" }
17gpui = { path = "../gpui" }
18project = { path = "../project" }
19regex.workspace = true
20search = { path = "../search" }
21settings = { path = "../settings" }
22theme = { path = "../theme" }
23util = { path = "../util" }
24workspace = { path = "../workspace" }
25
26log.workspace = true
27futures.workspace = true
28anyhow.workspace = true
29smallvec.workspace = true
30human_bytes = "0.4.1"
31isahc.workspace = true
32lazy_static.workspace = true
33postage.workspace = true
34serde.workspace = true
35serde_derive.workspace = true
36sysinfo.workspace = true
37tree-sitter-markdown = { git = "https://github.com/MDeiml/tree-sitter-markdown", rev = "330ecab87a3e3a7211ac69bbadc19eabecdb1cca" }
38urlencoding = "2.1.2"
39
40[dev-dependencies]
41editor = { path = "../editor", features = ["test-support"] }