utkarshkukreti / draco

Draco is a Rust library for building client side web applications with Web Assembly.
Apache License 2.0
304 stars 18 forks source link

Replace int_hash::IntHashMap with rustc_hash::FxHashMap #17

Closed theduke closed 5 years ago

theduke commented 5 years ago

The int_hash crate was yanked from crates.io. rustc_hash also provides a fast hash map suitable for the purpose.

Closes #16 .

green-s commented 5 years ago

Might be worth considering hashbrown.

theduke commented 5 years ago

@utkarshkukreti any change of merging this?

Draco is IMO the best attempt at a frontend framework so far.

It would be a shame if development is stopped.

utkarshkukreti commented 5 years ago

Thanks for the PR! I decided to just switch to the standard library HashMap for now. I'll look into rustc-hash and hashbrown and if they have a noticeable performance benefit, I'll switch to it. I've released 0.1.2 with this fix.