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