1[package]
2name = "activity_indicator"
3version = "0.1.0"
4edition = "2021"
5publish = false
6license = "GPL-3.0-or-later"
7
8[lib]
9path = "src/activity_indicator.rs"
10doctest = false
11
12[dependencies]
13auto_update = { path = "../auto_update" }
14editor = { path = "../editor" }
15language = { path = "../language" }
16gpui = { path = "../gpui" }
17project = { path = "../project" }
18settings = { path = "../settings" }
19ui = { path = "../ui" }
20util = { path = "../util" }
21theme = { path = "../theme" }
22workspace = { path = "../workspace", package = "workspace" }
23
24anyhow.workspace = true
25futures.workspace = true
26smallvec.workspace = true
27
28[dev-dependencies]
29editor = { path = "../editor", features = ["test-support"] }