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