zed/crates/feedback/Cargo.toml

34 lines
914 B
TOML
Raw Normal View History

[package]
name = "feedback"
version = "0.1.0"
edition = "2021"
[lib]
path = "src/feedback.rs"
[features]
test-support = []
[dependencies]
anyhow = "1.0.38"
client = { path = "../client" }
editor = { path = "../editor" }
2023-01-21 00:56:56 +03:00
language = { path = "../language" }
log = "0.4"
futures = "0.3"
gpui = { path = "../gpui" }
human_bytes = "0.4.1"
isahc = "1.7"
lazy_static = "1.4.0"
2023-01-21 00:56:56 +03:00
postage = { version = "0.4", features = ["futures-traits"] }
2023-01-18 08:12:52 +03:00
project = { path = "../project" }
search = { path = "../search" }
serde = { version = "1.0", features = ["derive", "rc"] }
settings = { path = "../settings" }
2023-01-18 08:12:52 +03:00
smallvec = { version = "1.6", features = ["union"] }
sysinfo = "0.27.1"
2023-01-18 08:12:52 +03:00
theme = { path = "../theme" }
2023-01-21 00:56:56 +03:00
tree-sitter-markdown = { git = "https://github.com/MDeiml/tree-sitter-markdown", rev = "330ecab87a3e3a7211ac69bbadc19eabecdb1cca" }
urlencoding = "2.1.2"
util = { path = "../util" }
workspace = { path = "../workspace" }