mirror of
https://gitlab.com/veloren/veloren.git
synced 2024-08-30 18:12:32 +00:00
Remove unused dependencies
This commit is contained in:
parent
5573fc33b9
commit
89b6111064
3
Cargo.lock
generated
3
Cargo.lock
generated
@ -5650,7 +5650,6 @@ dependencies = [
|
||||
"assets_manager",
|
||||
"deunicode",
|
||||
"git2",
|
||||
"hashbrown",
|
||||
"lazy_static",
|
||||
"ron",
|
||||
"serde",
|
||||
@ -5809,7 +5808,6 @@ dependencies = [
|
||||
"cpal",
|
||||
"criterion",
|
||||
"crossbeam",
|
||||
"deunicode",
|
||||
"directories-next",
|
||||
"dispatch 0.1.4",
|
||||
"dot_vox",
|
||||
@ -5819,7 +5817,6 @@ dependencies = [
|
||||
"gfx_device_gl",
|
||||
"gfx_gl",
|
||||
"gilrs",
|
||||
"git2",
|
||||
"glsl-include",
|
||||
"glutin",
|
||||
"glyph_brush",
|
||||
|
@ -82,7 +82,6 @@ chrono = "0.4.9"
|
||||
cpal = "0.13"
|
||||
copy_dir = "0.1.2"
|
||||
crossbeam = "0.8.0"
|
||||
deunicode = "1.0"
|
||||
# TODO: remove
|
||||
directories-next = "2.0"
|
||||
dot_vox = "4.0"
|
||||
@ -122,7 +121,6 @@ winres = "0.1"
|
||||
|
||||
[dev-dependencies]
|
||||
criterion = "0.3"
|
||||
git2 = "0.13"
|
||||
world = {package = "veloren-world", path = "../world"}
|
||||
rayon = "1.5.0"
|
||||
|
||||
|
@ -9,7 +9,6 @@ version = "0.9.0"
|
||||
name = "i18n-check"
|
||||
|
||||
[dependencies]
|
||||
hashbrown = { version = "0.9", features = ["rayon", "serde", "nightly"] }
|
||||
lazy_static = "1.4.0"
|
||||
assets_manager = {version = "0.4.2", features = ["bincode", "ron", "json", "hot-reloading"]}
|
||||
deunicode = "1.0"
|
||||
|
@ -5,7 +5,7 @@ use std::{
|
||||
path::{Path, PathBuf},
|
||||
};
|
||||
|
||||
use hashbrown::{HashMap, HashSet};
|
||||
use std::collections::{HashMap, HashSet};
|
||||
|
||||
/// The reference language, aka the more up-to-date localization data. Also the
|
||||
/// default language at first startup.
|
||||
|
@ -1,7 +1,7 @@
|
||||
use crate::assets::{self, AssetExt, AssetGuard, AssetHandle};
|
||||
use deunicode::deunicode;
|
||||
use hashbrown::{HashMap, HashSet};
|
||||
use serde::{Deserialize, Serialize};
|
||||
use std::collections::{HashMap, HashSet};
|
||||
use tracing::warn;
|
||||
|
||||
/// The reference language, aka the more up-to-date localization data.
|
||||
|
Loading…
Reference in New Issue
Block a user