mirror of
https://gitlab.com/veloren/veloren.git
synced 2024-08-30 18:12:32 +00:00
use hashbrown instead of std::collections
This commit is contained in:
parent
622101d3b1
commit
50e992ed0d
1
Cargo.lock
generated
1
Cargo.lock
generated
@ -5648,6 +5648,7 @@ name = "veloren-i18n-check"
|
||||
version = "0.9.0"
|
||||
dependencies = [
|
||||
"git2",
|
||||
"hashbrown",
|
||||
"ron",
|
||||
"serde",
|
||||
"tracing",
|
||||
|
@ -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"] }
|
||||
|
@ -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.
|
||||
|
Loading…
Reference in New Issue
Block a user