Cargo.toml

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