diff --git a/Cargo.lock b/Cargo.lock index c36ba62d0c..bf345408d0 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -179,18 +179,6 @@ dependencies = [ "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]] name = "arrayref" version = "0.3.6" @@ -1413,12 +1401,6 @@ dependencies = [ "nom 4.2.3", ] -[[package]] -name = "dotenv" -version = "0.15.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "77c90badedccf4105eca100756a0b1289e191f6fcbdadd3cee1d2f614f97da8f" - [[package]] name = "downcast-rs" version = "1.2.0" @@ -2416,15 +2398,6 @@ dependencies = [ "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]] name = "inotify" version = "0.7.1" @@ -5461,7 +5434,6 @@ name = "veloren-common" version = "0.9.0" dependencies = [ "approx 0.4.0", - "arraygen", "assets_manager", "bitflags", "criterion", @@ -5664,7 +5636,6 @@ dependencies = [ "authc", "chrono", "crossbeam-channel", - "dotenv", "futures-util", "hashbrown", "itertools 0.10.0", @@ -5753,7 +5724,6 @@ dependencies = [ "iced_native", "iced_winit", "image", - "inline_tweak", "itertools 0.10.0", "keyboard-keynames", "lazy_static", @@ -5795,7 +5765,6 @@ name = "veloren-voxygen-anim" version = "0.9.0" dependencies = [ "find_folder", - "inline_tweak", "lazy_static", "libloading 0.7.0", "notify 5.0.0-pre.6", diff --git a/common/Cargo.toml b/common/Cargo.toml index 8c3ef5d6c9..533a966a6f 100644 --- a/common/Cargo.toml +++ b/common/Cargo.toml @@ -22,7 +22,6 @@ serde = { version = "1.0.110", features = ["derive", "rc"] } [target.'cfg(not(target_arch = "wasm32"))'.dependencies] approx = "0.4.0" -arraygen = "0.1.13" crossbeam-utils = "0.8.1" bitflags = "1.2" crossbeam-channel = "0.5" diff --git a/server/Cargo.toml b/server/Cargo.toml index 09009685d0..b30c8b1a12 100644 --- a/server/Cargo.toml +++ b/server/Cargo.toml @@ -45,7 +45,6 @@ crossbeam-channel = "0.5" prometheus = { version = "0.12", default-features = false} portpicker = { git = "https://github.com/xMAC94x/portpicker-rs", rev = "df6b37872f3586ac3b21d08b56c8ec7cd92fb172" } authc = { git = "https://gitlab.com/veloren/auth.git", rev = "fb3dcbc4962b367253f8f2f92760ef44d2679c9a" } -dotenv = "0.15.0" slab = "0.4" rand_distr = "0.4.0" diff --git a/voxygen/Cargo.toml b/voxygen/Cargo.toml index 05703515f8..5a83a1dc4f 100644 --- a/voxygen/Cargo.toml +++ b/voxygen/Cargo.toml @@ -102,7 +102,7 @@ treeculler = "0.2" tokio = { version = "1", default-features = false, features = ["rt-multi-thread"] } num_cpus = "1.0" # vec_map = { version = "0.8.2" } -inline_tweak = "1.0.2" +# inline_tweak = "1.0.2" itertools = "0.10.0" # Tracy diff --git a/voxygen/anim/Cargo.toml b/voxygen/anim/Cargo.toml index 2070490ea1..d56153f062 100644 --- a/voxygen/anim/Cargo.toml +++ b/voxygen/anim/Cargo.toml @@ -14,7 +14,7 @@ default = ["simd"] [dependencies] common = {package = "veloren-common", path = "../../common"} 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} libloading = {version = "0.7", optional = true} notify = {version = "5.0.0-pre.2", optional = true}