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" }
22release_channel = { path = "../release_channel" }
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"] }