Cargo.toml

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