Cargo.toml

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