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" }
15editor = { path = "../editor" }
16language = { path = "../language" }
17gpui = { path = "../gpui" }
18project = { path = "../project" }
19search = { path = "../search" }
20settings = { path = "../settings" }
21theme = { path = "../theme" }
22util = { path = "../util" }
23workspace = { path = "../workspace" }
24
25log.workspace = true
26futures.workspace = true
27anyhow.workspace = true
28smallvec.workspace = true
29human_bytes = "0.4.1"
30isahc.workspace = true
31lazy_static.workspace = true
32postage.workspace = true
33serde.workspace = true
34serde_derive.workspace = true
35sysinfo = "0.27.1"
36tree-sitter-markdown = { git = "https://github.com/MDeiml/tree-sitter-markdown", rev = "330ecab87a3e3a7211ac69bbadc19eabecdb1cca" }
37urlencoding = "2.1.2"
38
39[dev-dependencies]
40editor = { path = "../editor", features = ["test-support"] }