2022-06-16 10:59:47 +03:00
|
|
|
[package]
|
2022-06-30 02:54:01 +03:00
|
|
|
name = "activity_indicator"
|
2022-06-16 10:59:47 +03:00
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
2023-01-18 23:28:02 +03:00
|
|
|
publish = false
|
2022-06-16 10:59:47 +03:00
|
|
|
|
|
|
|
[lib]
|
2022-06-30 02:54:01 +03:00
|
|
|
path = "src/activity_indicator.rs"
|
2022-06-16 10:59:47 +03:00
|
|
|
doctest = false
|
|
|
|
|
|
|
|
[dependencies]
|
2022-06-30 02:54:01 +03:00
|
|
|
auto_update = { path = "../auto_update" }
|
2022-06-16 10:59:47 +03:00
|
|
|
editor = { path = "../editor" }
|
|
|
|
language = { path = "../language" }
|
|
|
|
gpui = { path = "../gpui" }
|
|
|
|
project = { path = "../project" }
|
|
|
|
settings = { path = "../settings" }
|
|
|
|
util = { path = "../util" }
|
2023-05-18 00:44:55 +03:00
|
|
|
theme = { path = "../theme" }
|
2022-06-16 10:59:47 +03:00
|
|
|
workspace = { path = "../workspace" }
|
2023-05-18 00:44:55 +03:00
|
|
|
|
2023-04-25 03:41:55 +03:00
|
|
|
futures.workspace = true
|
|
|
|
smallvec.workspace = true
|
2023-05-20 18:54:38 +03:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
editor = { path = "../editor", features = ["test-support"] }
|