2022-06-16 07:59:47 +00:00
|
|
|
[package]
|
2022-06-29 23:54:01 +00:00
|
|
|
name = "activity_indicator"
|
2022-06-16 07:59:47 +00:00
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
2023-01-18 20:28:02 +00:00
|
|
|
publish = false
|
2022-06-16 07:59:47 +00:00
|
|
|
|
|
|
|
[lib]
|
2022-06-29 23:54:01 +00:00
|
|
|
path = "src/activity_indicator.rs"
|
2022-06-16 07:59:47 +00:00
|
|
|
doctest = false
|
|
|
|
|
|
|
|
[dependencies]
|
2024-01-03 18:52:40 +00:00
|
|
|
auto_update = { path = "../auto_update" }
|
2024-01-03 18:58:57 +00:00
|
|
|
editor = { path = "../editor" }
|
2024-01-03 19:58:02 +00:00
|
|
|
language = { path = "../language" }
|
2024-01-03 20:59:39 +00:00
|
|
|
gpui = { path = "../gpui" }
|
2024-01-03 19:53:24 +00:00
|
|
|
project = { path = "../project" }
|
2024-01-03 20:28:45 +00:00
|
|
|
settings = { path = "../settings" }
|
2024-01-03 20:33:51 +00:00
|
|
|
ui = { path = "../ui" }
|
2022-06-16 07:59:47 +00:00
|
|
|
util = { path = "../util" }
|
2024-01-03 20:41:01 +00:00
|
|
|
theme = { path = "../theme" }
|
2024-01-03 19:08:51 +00:00
|
|
|
workspace = { path = "../workspace", package = "workspace" }
|
2023-05-17 21:44:55 +00:00
|
|
|
|
2024-01-03 18:47:33 +00:00
|
|
|
anyhow.workspace = true
|
2023-04-25 00:41:55 +00:00
|
|
|
futures.workspace = true
|
|
|
|
smallvec.workspace = true
|
2023-05-20 15:54:38 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2024-01-03 18:58:57 +00:00
|
|
|
editor = { path = "../editor", features = ["test-support"] }
|