Cargo.toml

 1[package]
 2name = "drag_and_drop"
 3version = "0.1.0"
 4edition = "2021"
 5
 6[lib]
 7path = "src/drag_and_drop.rs"
 8doctest = false
 9
10[dependencies]
11collections = { path = "../collections" }
12gpui = { path = "../gpui" }
13
14[dev-dependencies]
15gpui = { path = "../gpui", features = ["test-support"] }