Cargo.toml

 1[package]
 2name = "feedback"
 3version = "0.1.0"
 4edition = "2021"
 5publish = false
 6
 7[lib]
 8path = "src/feedback.rs"
 9
10[features]
11test-support = []
12
13[dependencies]
14client = { path = "../client" }
15db = { path = "../db" }
16editor = { path = "../editor" }
17gpui = { path = "../gpui" }
18language = { path = "../language" }
19menu = { path = "../menu" }
20project = { path = "../project" }
21settings = { path = "../settings" }
22theme = { path = "../theme" }
23ui = { path = "../ui" }
24util = { path = "../util" }
25workspace = { path = "../workspace"}
26
27bitflags = "2.4.1"
28human_bytes = "0.4.1"
29
30anyhow.workspace = true
31futures.workspace = true
32isahc.workspace = true
33lazy_static.workspace = true
34log.workspace = true
35postage.workspace = true
36regex.workspace = true
37serde.workspace = true
38serde_derive.workspace = true
39serde_json.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 = { path = "../editor", features = ["test-support"] }