about summary refs log tree commit diff
path: root/library/proc_macro/src/bridge/fxhash.rs
AgeCommit message (Collapse)AuthorLines
2023-04-12remove some unneeded importsKaDiWa-2/+0
2022-12-30Replace libstd, libcore, liballoc in docs.jonathanCogan-3/+3
2022-07-18proc_macro: use fxhash within the proc_macro crateNika Layzell-0/+117
Unfortunately, as it is difficult to depend on crates from within proc_macro, this is done by vendoring a copy of the hasher as a module rather than depending on the rustc_hash crate. This probably doesn't have a substantial impact up-front, however will be more relevant once symbols are interned within the proc_macro client.