Cargo.toml

 1[package]
 2name = "feedback"
 3version = "0.1.0"
 4edition = "2021"
 5publish = false
 6license = "GPL-3.0-or-later"
 7
 8[lib]
 9path = "src/feedback.rs"
10
11[features]
12test-support = []
13
14[dependencies]
15client = { path = "../client" }
16db = { path = "../db" }
17editor = { path = "../editor" }
18gpui = { path = "../gpui" }
19language = { path = "../language" }
20menu = { path = "../menu" }
21project = { path = "../project" }
22settings = { path = "../settings" }
23theme = { path = "../theme" }
24ui = { path = "../ui" }
25util = { path = "../util" }
26workspace = { path = "../workspace"}
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
40serde_json.workspace = true
41smallvec.workspace = true
42smol.workspace = true
43sysinfo.workspace = true
44tree-sitter-markdown = { git = "https://github.com/MDeiml/tree-sitter-markdown", rev = "330ecab87a3e3a7211ac69bbadc19eabecdb1cca" }
45urlencoding = "2.1.2"
46
47[dev-dependencies]
48editor = { path = "../editor", features = ["test-support"] }