mirror of
https://github.com/zed-industries/zed.git
synced 2025-01-11 21:13:02 +00:00
29 lines
875 B
TOML
29 lines
875 B
TOML
|
[package]
|
||
|
name = "activity_indicator2"
|
||
|
version = "0.1.0"
|
||
|
edition = "2021"
|
||
|
publish = false
|
||
|
|
||
|
[lib]
|
||
|
path = "src/activity_indicator.rs"
|
||
|
doctest = false
|
||
|
|
||
|
[dependencies]
|
||
|
auto_update = { path = "../auto_update2", package = "auto_update2" }
|
||
|
editor = { path = "../editor2", package = "editor2" }
|
||
|
language = { path = "../language2", package = "language2" }
|
||
|
gpui = { path = "../gpui2", package = "gpui2" }
|
||
|
project = { path = "../project2", package = "project2" }
|
||
|
settings = { path = "../settings2", package = "settings2" }
|
||
|
ui = { path = "../ui2", package = "ui2" }
|
||
|
util = { path = "../util" }
|
||
|
theme = { path = "../theme2", package = "theme2" }
|
||
|
workspace = { path = "../workspace2", package = "workspace2" }
|
||
|
|
||
|
anyhow.workspace = true
|
||
|
futures.workspace = true
|
||
|
smallvec.workspace = true
|
||
|
|
||
|
[dev-dependencies]
|
||
|
editor = { path = "../editor2", package = "editor2", features = ["test-support"] }
|