Cargo.toml

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