use hashbrown instead of std::collections

This commit is contained in:
juliancoffee 2021-05-03 22:03:35 +03:00
parent 622101d3b1
commit 50e992ed0d
3 changed files with 3 additions and 1 deletions

1
Cargo.lock generated
View File

@ -5648,6 +5648,7 @@ name = "veloren-i18n-check"
version = "0.9.0"
dependencies = [
"git2",
"hashbrown",
"ron",
"serde",
"tracing",

View File

@ -13,3 +13,4 @@ serde = { version = "1.0", features = ["derive"] }
tracing = "0.1"
ron = "0.6"
git2 = "0.13"
hashbrown = { version = "0.9", features = ["rayon", "serde", "nightly"] }

View File

@ -5,7 +5,7 @@ use std::{
path::{Path, PathBuf},
};
use std::collections::{HashMap, HashSet};
use hashbrown::{HashMap, HashSet};
/// The reference language, aka the more up-to-date localization data. Also the
/// default language at first startup.