Migrate 25 crates to monorepo.

pin-project
pin-project-internal
pin-project-lite
pkcs1
pkcs8
plotters-backend
plotters-svg
ppv-lite86
predicates-core
predicates-tree
prettyplease
proc-macro2
rand
rand_chacha
rand_core
rand_xorshift
rayon
rayon-core
regex
regex-syntax
rusqlite
rustc-demangle
rustc-hash
rustversion
scopeguard

Bug: 339424309
Test: treehugger
Change-Id: I9dc77da8e761ec1390e616274138e684530a79cd
3 files changed
tree: 82305d08b799760d8d2df4297c7fc9acef65a700
  1. src/
  2. .cargo_vcs_info.json
  3. .gitignore
  4. Android.bp
  5. Cargo.toml
  6. Cargo.toml.orig
  7. CODE_OF_CONDUCT.md
  8. LICENSE-APACHE
  9. LICENSE-MIT
  10. METADATA
  11. MODULE_LICENSE_APACHE2
  12. OWNERS
  13. README.md
README.md

rustc-hash

crates.io Documentation

A speedy hash algorithm used within rustc. The hashmap in liballoc by default uses SipHash which isn‘t quite as speedy as we want. In the compiler we’re not really worried about DOS attempts, so we use a fast non-cryptographic hash.

This is the same as the algorithm used by Firefox -- which is a homespun one not based on any widely-known algorithm -- though modified to produce 64-bit hash values instead of 32-bit hash values. It consistently out-performs an FNV-based hash within rustc itself -- the collision rate is similar or slightly worse than FNV, but the speed of the hash function itself is much higher because it works on up to 8 bytes at a time.

Usage

use rustc_hash::FxHashMap;

let mut map: FxHashMap<u32, u32> = FxHashMap::default();
map.insert(22, 44);

no_std

This crate can be used as a no_std crate by disabling the std feature, which is on by default, as follows:

rustc-hash = { version = "1.0", default-features = false }

In this configuration, FxHasher is the only export, and the FxHashMap/FxHashSet type aliases are omitted.