Cargo.toml

 1[package]
 2name = "component_test"
 3version = "0.1.0"
 4edition = "2021"
 5publish = false
 6
 7[lib]
 8path = "src/component_test.rs"
 9doctest = false
10
11[dependencies]
12anyhow.workspace = true
13gpui = { path = "../gpui" }
14settings = { path = "../settings" }
15util = { path = "../util" }
16theme = { path = "../theme" }
17workspace = { path = "../workspace" }
18project = { path = "../project" }