zed/crates/collections/Cargo.toml
Lukas Wirth a85f8ad090
Use no-op hasher for TypeId hashing (#58629)
TypeId is effectively already a hash, so re-hashing it with fxhash is
unnecessary.

Release Notes:

- N/A or Added/Fixed/Improved ...

---------

Co-authored-by: zed-zippy[bot] <234243425+zed-zippy[bot]@users.noreply.github.com>
2026-06-05 10:32:57 +00:00

22 lines
380 B
TOML

[package]
name = "collections"
version = "0.1.0"
edition.workspace = true
publish = false
license = "Apache-2.0"
description = "Standard collection types used by Zed and GPUI"
[lints]
workspace = true
[lib]
path = "src/collections.rs"
doctest = false
[features]
test-support = []
[dependencies]
indexmap.workspace = true
rustc-hash.workspace = true
gpui_util.workspace = true