Merge branch 'xMAC94x/reduce_deps' into 'master'

remove some unused deps Yuri found

See merge request veloren/veloren!2197
This commit is contained in:
Marcel 2021-04-25 20:22:31 +00:00
commit 35584d0344
5 changed files with 2 additions and 35 deletions

31
Cargo.lock generated
View File

@ -179,18 +179,6 @@ dependencies = [
"syn 1.0.69", "syn 1.0.69",
] ]
[[package]]
name = "arraygen"
version = "0.1.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5a1ae06b5f52588295bfd019b837b6fb1a6914d58ece30b0c43ae439ef08e562"
dependencies = [
"proc-macro-error",
"proc-macro2 1.0.26",
"quote 1.0.9",
"syn 1.0.69",
]
[[package]] [[package]]
name = "arrayref" name = "arrayref"
version = "0.3.6" version = "0.3.6"
@ -1413,12 +1401,6 @@ dependencies = [
"nom 4.2.3", "nom 4.2.3",
] ]
[[package]]
name = "dotenv"
version = "0.15.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "77c90badedccf4105eca100756a0b1289e191f6fcbdadd3cee1d2f614f97da8f"
[[package]] [[package]]
name = "downcast-rs" name = "downcast-rs"
version = "1.2.0" version = "1.2.0"
@ -2416,15 +2398,6 @@ dependencies = [
"serde", "serde",
] ]
[[package]]
name = "inline_tweak"
version = "1.0.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7033e97b20277cc0d043226d1940fa7719ff08d2305d1fc7421e53066d00eb4b"
dependencies = [
"lazy_static",
]
[[package]] [[package]]
name = "inotify" name = "inotify"
version = "0.7.1" version = "0.7.1"
@ -5461,7 +5434,6 @@ name = "veloren-common"
version = "0.9.0" version = "0.9.0"
dependencies = [ dependencies = [
"approx 0.4.0", "approx 0.4.0",
"arraygen",
"assets_manager", "assets_manager",
"bitflags", "bitflags",
"criterion", "criterion",
@ -5664,7 +5636,6 @@ dependencies = [
"authc", "authc",
"chrono", "chrono",
"crossbeam-channel", "crossbeam-channel",
"dotenv",
"futures-util", "futures-util",
"hashbrown", "hashbrown",
"itertools 0.10.0", "itertools 0.10.0",
@ -5753,7 +5724,6 @@ dependencies = [
"iced_native", "iced_native",
"iced_winit", "iced_winit",
"image", "image",
"inline_tweak",
"itertools 0.10.0", "itertools 0.10.0",
"keyboard-keynames", "keyboard-keynames",
"lazy_static", "lazy_static",
@ -5795,7 +5765,6 @@ name = "veloren-voxygen-anim"
version = "0.9.0" version = "0.9.0"
dependencies = [ dependencies = [
"find_folder", "find_folder",
"inline_tweak",
"lazy_static", "lazy_static",
"libloading 0.7.0", "libloading 0.7.0",
"notify 5.0.0-pre.6", "notify 5.0.0-pre.6",

View File

@ -22,7 +22,6 @@ serde = { version = "1.0.110", features = ["derive", "rc"] }
[target.'cfg(not(target_arch = "wasm32"))'.dependencies] [target.'cfg(not(target_arch = "wasm32"))'.dependencies]
approx = "0.4.0" approx = "0.4.0"
arraygen = "0.1.13"
crossbeam-utils = "0.8.1" crossbeam-utils = "0.8.1"
bitflags = "1.2" bitflags = "1.2"
crossbeam-channel = "0.5" crossbeam-channel = "0.5"

View File

@ -45,7 +45,6 @@ crossbeam-channel = "0.5"
prometheus = { version = "0.12", default-features = false} prometheus = { version = "0.12", default-features = false}
portpicker = { git = "https://github.com/xMAC94x/portpicker-rs", rev = "df6b37872f3586ac3b21d08b56c8ec7cd92fb172" } portpicker = { git = "https://github.com/xMAC94x/portpicker-rs", rev = "df6b37872f3586ac3b21d08b56c8ec7cd92fb172" }
authc = { git = "https://gitlab.com/veloren/auth.git", rev = "fb3dcbc4962b367253f8f2f92760ef44d2679c9a" } authc = { git = "https://gitlab.com/veloren/auth.git", rev = "fb3dcbc4962b367253f8f2f92760ef44d2679c9a" }
dotenv = "0.15.0"
slab = "0.4" slab = "0.4"
rand_distr = "0.4.0" rand_distr = "0.4.0"

View File

@ -102,7 +102,7 @@ treeculler = "0.2"
tokio = { version = "1", default-features = false, features = ["rt-multi-thread"] } tokio = { version = "1", default-features = false, features = ["rt-multi-thread"] }
num_cpus = "1.0" num_cpus = "1.0"
# vec_map = { version = "0.8.2" } # vec_map = { version = "0.8.2" }
inline_tweak = "1.0.2" # inline_tweak = "1.0.2"
itertools = "0.10.0" itertools = "0.10.0"
# Tracy # Tracy

View File

@ -14,7 +14,7 @@ default = ["simd"]
[dependencies] [dependencies]
common = {package = "veloren-common", path = "../../common"} common = {package = "veloren-common", path = "../../common"}
find_folder = {version = "0.3.0", optional = true} find_folder = {version = "0.3.0", optional = true}
inline_tweak = "1.0.2" # inline_tweak = "1.0.2"
lazy_static = {version = "1.4.0", optional = true} lazy_static = {version = "1.4.0", optional = true}
libloading = {version = "0.7", optional = true} libloading = {version = "0.7", optional = true}
notify = {version = "5.0.0-pre.2", optional = true} notify = {version = "5.0.0-pre.2", optional = true}