2023-01-09 18:54:37 +00:00
|
|
|
[package]
|
|
|
|
name = "feedback"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
2023-01-23 23:34:10 +00:00
|
|
|
publish = false
|
2024-01-27 12:51:16 +00:00
|
|
|
license = "GPL-3.0-or-later"
|
2024-01-23 16:40:30 +00:00
|
|
|
|
2024-03-05 17:01:17 +00:00
|
|
|
[lints]
|
|
|
|
workspace = true
|
|
|
|
|
2023-01-09 18:54:37 +00:00
|
|
|
[lib]
|
|
|
|
path = "src/feedback.rs"
|
|
|
|
|
|
|
|
[features]
|
|
|
|
test-support = []
|
|
|
|
|
|
|
|
[dependencies]
|
2024-01-31 02:41:29 +00:00
|
|
|
anyhow.workspace = true
|
2024-03-02 02:07:39 +00:00
|
|
|
bitflags.workspace = true
|
2024-02-06 19:41:36 +00:00
|
|
|
client.workspace = true
|
|
|
|
db.workspace = true
|
|
|
|
editor.workspace = true
|
2024-01-31 02:41:29 +00:00
|
|
|
futures.workspace = true
|
2024-02-06 19:41:36 +00:00
|
|
|
gpui.workspace = true
|
2023-01-09 18:54:37 +00:00
|
|
|
human_bytes = "0.4.1"
|
2023-05-23 02:28:22 +00:00
|
|
|
isahc.workspace = true
|
2024-05-10 21:50:20 +00:00
|
|
|
http.workspace = true
|
2024-02-06 19:41:36 +00:00
|
|
|
language.workspace = true
|
2024-01-03 18:55:34 +00:00
|
|
|
log.workspace = true
|
2024-02-06 19:41:36 +00:00
|
|
|
menu.workspace = true
|
|
|
|
project.workspace = true
|
2024-01-03 18:55:34 +00:00
|
|
|
regex.workspace = true
|
2024-02-06 19:41:36 +00:00
|
|
|
release_channel.workspace = true
|
2023-04-25 00:41:55 +00:00
|
|
|
serde.workspace = true
|
|
|
|
serde_derive.workspace = true
|
2024-01-07 13:14:21 +00:00
|
|
|
serde_json.workspace = true
|
2024-01-03 18:55:34 +00:00
|
|
|
smol.workspace = true
|
2023-10-02 23:35:31 +00:00
|
|
|
sysinfo.workspace = true
|
2024-02-06 19:41:36 +00:00
|
|
|
ui.workspace = true
|
2023-01-09 18:54:37 +00:00
|
|
|
urlencoding = "2.1.2"
|
2024-02-06 19:41:36 +00:00
|
|
|
util.workspace = true
|
|
|
|
workspace.workspace = true
|
2023-05-20 15:54:38 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2024-02-06 19:41:36 +00:00
|
|
|
editor = { workspace = true, features = ["test-support"] }
|