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" }
18util = { path = "../util" }
19theme = { path = "../theme" }
20workspace = { path = "../workspace" }
21
22futures.workspace = true
23smallvec.workspace = true
24
25[dev-dependencies]
26editor = { path = "../editor", features = ["test-support"] }