Cargo.toml

 1[package]
 2name = "feedback"
 3version = "0.1.0"
 4edition = "2021"
 5publish = false
 6license = "GPL-3.0-only"
 7
 8
 9[lib]
10path = "src/feedback.rs"
11
12[features]
13test-support = []
14
15[dependencies]
16client = { path = "../client" }
17db = { path = "../db" }
18editor = { path = "../editor" }
19gpui = { path = "../gpui" }
20language = { path = "../language" }
21menu = { path = "../menu" }
22project = { path = "../project" }
23settings = { path = "../settings" }
24theme = { path = "../theme" }
25ui = { path = "../ui" }
26util = { path = "../util" }
27workspace = { path = "../workspace"}
28
29bitflags = "2.4.1"
30human_bytes = "0.4.1"
31
32anyhow.workspace = true
33futures.workspace = true
34isahc.workspace = true
35lazy_static.workspace = true
36log.workspace = true
37postage.workspace = true
38regex.workspace = true
39serde.workspace = true
40serde_derive.workspace = true
41serde_json.workspace = true
42smallvec.workspace = true
43smol.workspace = true
44sysinfo.workspace = true
45tree-sitter-markdown = { git = "https://github.com/MDeiml/tree-sitter-markdown", rev = "330ecab87a3e3a7211ac69bbadc19eabecdb1cca" }
46urlencoding = "2.1.2"
47
48[dev-dependencies]
49editor = { path = "../editor", features = ["test-support"] }