2023-01-09 21:54:37 +03:00
|
|
|
[package]
|
|
|
|
name = "feedback"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
2023-01-24 02:34:10 +03:00
|
|
|
publish = false
|
2024-01-27 15:51:16 +03:00
|
|
|
license = "GPL-3.0-or-later"
|
2024-01-23 19:40:30 +03:00
|
|
|
|
2023-01-09 21:54:37 +03:00
|
|
|
[lib]
|
|
|
|
path = "src/feedback.rs"
|
|
|
|
|
|
|
|
[features]
|
|
|
|
test-support = []
|
|
|
|
|
|
|
|
[dependencies]
|
2024-01-31 05:41:29 +03:00
|
|
|
anyhow.workspace = true
|
|
|
|
bitflags = "2.4.1"
|
2024-02-06 22:41:36 +03:00
|
|
|
client.workspace = true
|
|
|
|
db.workspace = true
|
|
|
|
editor.workspace = true
|
2024-01-31 05:41:29 +03:00
|
|
|
futures.workspace = true
|
2024-02-06 22:41:36 +03:00
|
|
|
gpui.workspace = true
|
2023-01-09 21:54:37 +03:00
|
|
|
human_bytes = "0.4.1"
|
2023-05-23 05:28:22 +03:00
|
|
|
isahc.workspace = true
|
2024-02-06 22:41:36 +03:00
|
|
|
language.workspace = true
|
2023-04-25 03:41:55 +03:00
|
|
|
lazy_static.workspace = true
|
2024-01-03 21:55:34 +03:00
|
|
|
log.workspace = true
|
2024-02-06 22:41:36 +03:00
|
|
|
menu.workspace = true
|
2023-04-25 03:41:55 +03:00
|
|
|
postage.workspace = true
|
2024-02-06 22:41:36 +03:00
|
|
|
project.workspace = true
|
2024-01-03 21:55:34 +03:00
|
|
|
regex.workspace = true
|
2024-02-06 22:41:36 +03:00
|
|
|
release_channel.workspace = true
|
2023-04-25 03:41:55 +03:00
|
|
|
serde.workspace = true
|
|
|
|
serde_derive.workspace = true
|
2024-01-07 16:14:21 +03:00
|
|
|
serde_json.workspace = true
|
2024-02-06 22:41:36 +03:00
|
|
|
settings.workspace = true
|
2024-01-03 21:55:34 +03:00
|
|
|
smallvec.workspace = true
|
|
|
|
smol.workspace = true
|
2023-10-03 02:35:31 +03:00
|
|
|
sysinfo.workspace = true
|
2024-02-06 22:41:36 +03:00
|
|
|
theme.workspace = true
|
2023-01-21 00:56:56 +03:00
|
|
|
tree-sitter-markdown = { git = "https://github.com/MDeiml/tree-sitter-markdown", rev = "330ecab87a3e3a7211ac69bbadc19eabecdb1cca" }
|
2024-02-06 22:41:36 +03:00
|
|
|
ui.workspace = true
|
2023-01-09 21:54:37 +03:00
|
|
|
urlencoding = "2.1.2"
|
2024-02-06 22:41:36 +03:00
|
|
|
util.workspace = true
|
|
|
|
workspace.workspace = true
|
2023-05-20 18:54:38 +03:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2024-02-06 22:41:36 +03:00
|
|
|
editor = { workspace = true, features = ["test-support"] }
|