mirror of
https://github.com/zed-industries/zed.git
synced 2024-11-12 19:11:23 +03:00
b871f906d6
We can also use these maps and sets in place of `SeaHasher` because they are also deterministic. Note that we're not swapping std's `HashMap` and `HashSet` wholesale inside of `collections` because on the server we need cryptographically secure collections.
16 lines
198 B
TOML
16 lines
198 B
TOML
[package]
|
|
name = "collections"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
publish = false
|
|
|
|
[lib]
|
|
path = "src/collections.rs"
|
|
doctest = false
|
|
|
|
[features]
|
|
test-support = []
|
|
|
|
[dependencies]
|
|
rustc-hash = "1.1"
|