Cargo.toml

 1[package]
 2name = "activity_indicator2"
 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_update2", package = "auto_update2" }
13editor = { path = "../editor2", package = "editor2" }
14language = { path = "../language2", package = "language2" }
15gpui = { path = "../gpui2", package = "gpui2" }
16project = { path = "../project2", package = "project2" }
17settings = { path = "../settings2", package = "settings2" }
18ui = { path = "../ui2", package = "ui2" }
19util = { path = "../util" }
20theme = { path = "../theme2", package = "theme2" }
21workspace = { path = "../workspace2", package = "workspace2" }
22
23anyhow.workspace = true
24futures.workspace = true
25smallvec.workspace = true
26
27[dev-dependencies]
28editor = { path = "../editor2", package = "editor2", features = ["test-support"] }