Cargo.toml

 1[package]
 2name = "context_menu"
 3version = "0.1.0"
 4edition = "2021"
 5
 6[lib]
 7path = "src/context_menu.rs"
 8doctest = false
 9
10[dependencies]
11gpui = { path = "../gpui" }
12menu = { path = "../menu" }
13settings = { path = "../settings" }
14theme = { path = "../theme" }
15smallvec = "1.6"