mirror of
https://github.com/RustPython/Parser.git
synced 2025-07-16 17:45:24 +00:00
Use ahash in the compiler
This commit is contained in:
parent
64fa9ccba9
commit
a0790d4906
5 changed files with 14 additions and 10 deletions
|
@ -5,6 +5,9 @@
|
|||
#[macro_use]
|
||||
extern crate log;
|
||||
|
||||
type IndexMap<K, V> = indexmap::IndexMap<K, V, ahash::RandomState>;
|
||||
type IndexSet<T> = indexmap::IndexSet<T, ahash::RandomState>;
|
||||
|
||||
pub mod compile;
|
||||
pub mod error;
|
||||
pub mod ir;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue