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