Cargo.toml

 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]
13anyhow.workspace = true
14auto_update = { path = "../auto_update" }
15editor = { path = "../editor" }
16futures.workspace = true
17gpui = { path = "../gpui" }
18language = { path = "../language" }
19project = { path = "../project" }
20settings = { path = "../settings" }
21smallvec.workspace = true
22theme = { path = "../theme" }
23ui = { path = "../ui" }
24util = { path = "../util" }
25workspace = { path = "../workspace", package = "workspace" }
26
27[dev-dependencies]
28editor = { path = "../editor", features = ["test-support"] }