Skip to content

Commit

Permalink
#19 indexmap
Browse files Browse the repository at this point in the history
  • Loading branch information
yegor256 committed Apr 23, 2023
1 parent 154f6aa commit e581b68
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 2 deletions.
25 changes: 24 additions & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,5 @@ rustc-hash = "1.1.0"
nohash-hasher = "0.2.0"
tinymap = "0.4.0"
linked-hash-map = "0.5.6"
linear-map = "1.2.0"
linear-map = "1.2.0"
indexmap = "1.9.3"
6 changes: 6 additions & 0 deletions tests/benchmark.rs
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,12 @@ fn benchmark(total: usize) -> HashMap<&'static str, Duration> {
linear_map::LinearMap::<u32, i64>::new(),
total
);
insert!(
"indexmap::IndexMap",
ret,
indexmap::IndexMap::<u32, i64>::new(),
total
);
insert!(
"micromap::Map",
ret,
Expand Down

0 comments on commit e581b68

Please sign in to comment.