Cargo.toml

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