zed/crates/feedback/Cargo.toml

38 lines
896 B
TOML
Raw Normal View History

[package]
name = "feedback"
version = "0.1.0"
edition = "2021"
2023-01-24 02:34:10 +03:00
publish = false
[lib]
path = "src/feedback.rs"
[features]
test-support = []
[dependencies]
client = { path = "../client" }
editor = { path = "../editor" }
2023-01-21 00:56:56 +03:00
language = { path = "../language" }
gpui = { path = "../gpui" }
project = { path = "../project" }
search = { path = "../search" }
settings = { path = "../settings" }
theme = { path = "../theme" }
util = { path = "../util" }
workspace = { path = "../workspace" }
log.workspace = true
futures.workspace = true
anyhow.workspace = true
smallvec.workspace = true
human_bytes = "0.4.1"
isahc = "1.7"
lazy_static.workspace = true
postage.workspace = true
serde.workspace = true
serde_derive.workspace = true
sysinfo = "0.27.1"
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"