Cargo.toml

 1[package]
 2name = "collections"
 3version = "0.1.0"
 4edition.workspace = true
 5publish = false
 6license = "Apache-2.0"
 7description = "Standard collection type re-exports used by Zed and GPUI"
 8
 9[lints]
10workspace = true
11
12[lib]
13path = "src/collections.rs"
14doctest = false
15
16[features]
17test-support = []
18
19[dependencies]
20indexmap.workspace = true
21rustc-hash.workspace = true