1[package]
2name = "feedback2"
3version = "0.1.0"
4edition = "2021"
5publish = false
6
7[lib]
8path = "src/feedback2.rs"
9
10[features]
11test-support = []
12
13[dependencies]
14client = { package = "client2", path = "../client2" }
15db = { package = "db2", path = "../db2" }
16editor = { package = "editor2", path = "../editor2" }
17language = { package = "language2", path = "../language2" }
18gpui = { package = "gpui2", path = "../gpui2" }
19project = { package = "project2", path = "../project2" }
20regex.workspace = true
21search = { package = "search2", path = "../search2" }
22settings = { package = "settings2", path = "../settings2" }
23theme = { package = "theme2", path = "../theme2" }
24util = { path = "../util" }
25workspace = { package = "workspace2", path = "../workspace2"}
26ui = { package = "ui2", path = "../ui2" }
27
28log.workspace = true
29futures.workspace = true
30anyhow.workspace = true
31smallvec.workspace = true
32human_bytes = "0.4.1"
33isahc.workspace = true
34lazy_static.workspace = true
35postage.workspace = true
36serde.workspace = true
37serde_derive.workspace = true
38sysinfo.workspace = true
39tree-sitter-markdown = { git = "https://github.com/MDeiml/tree-sitter-markdown", rev = "330ecab87a3e3a7211ac69bbadc19eabecdb1cca" }
40urlencoding = "2.1.2"
41
42[dev-dependencies]
43editor = { package = "editor2", path = "../editor2", features = ["test-support"] }