Cargo.toml

 1[package]
 2name = "activity_indicator"
 3version = "0.1.0"
 4edition = "2021"
 5
 6[lib]
 7path = "src/activity_indicator.rs"
 8doctest = false
 9
10[dependencies]
11auto_update = { path = "../auto_update" }
12editor = { path = "../editor" }
13language = { path = "../language" }
14gpui = { path = "../gpui" }
15project = { path = "../project" }
16settings = { path = "../settings" }
17util = { path = "../util" }
18workspace = { path = "../workspace" }
19futures = "0.3"
20smallvec = { version = "1.6", features = ["union"] }