From 9f16a946eea78dda12e71eef92bd98fc7fcb14b9 Mon Sep 17 00:00:00 2001 From: Acrimon Date: Wed, 20 Jan 2021 15:53:58 +0100 Subject: [PATCH] update a few deps --- Cargo.lock | 27 ++++++++++++++++++--------- network/Cargo.toml | 4 ++-- voxygen/Cargo.toml | 2 +- world/Cargo.toml | 6 +++--- 4 files changed, 24 insertions(+), 15 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index bdbf7973ae..f112d1cdd8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -427,9 +427,9 @@ checksum = "cf1de2fe8c75bc145a2f577add951f8134889b4795d47466a54a5c846d691693" [[package]] name = "bitvec" -version = "0.19.4" +version = "0.20.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a7ba35e9565969edb811639dbebfe34edc0368e472c5018474c8eb2543397f81" +checksum = "f5011ffc90248764d7005b0e10c7294f5aa1bd87d9dd7248f4ad475b347c294d" dependencies = [ "funty", "radium", @@ -1109,7 +1109,7 @@ dependencies = [ "clap", "criterion-plot", "csv", - "itertools", + "itertools 0.9.0", "lazy_static", "num-traits 0.2.14", "oorandom", @@ -1131,7 +1131,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e022feadec601fba1649cfa83586381a4ad31c6bf3a9ab7d408118b05dd9889d" dependencies = [ "cast", - "itertools", + "itertools 0.9.0", ] [[package]] @@ -2748,6 +2748,15 @@ dependencies = [ "either", ] +[[package]] +name = "itertools" +version = "0.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "37d572918e350e82412fe766d24b15e6682fb2ed2bbe018280caa810397cb319" +dependencies = [ + "either", +] + [[package]] name = "itoa" version = "0.4.6" @@ -4180,9 +4189,9 @@ dependencies = [ [[package]] name = "radium" -version = "0.5.3" +version = "0.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "941ba9d78d8e2f7ce474c015eea4d9c6d25b6a3327f9832ee29a4de27f91bbb8" +checksum = "e9e006811e1fdd12672b0820a7f44c18dde429f367d50cec003d22aa9b3c8ddc" [[package]] name = "rand" @@ -6099,7 +6108,7 @@ dependencies = [ "futures-timer 3.0.2", "futures-util", "hashbrown 0.9.1", - "itertools", + "itertools 0.9.0", "lazy_static", "libsqlite3-sys", "portpicker", @@ -6179,7 +6188,7 @@ dependencies = [ "iced_winit", "image", "inline_tweak", - "itertools", + "itertools 0.9.0", "lazy_static", "native-dialog", "num 0.3.1", @@ -6237,7 +6246,7 @@ dependencies = [ "fxhash", "hashbrown 0.9.1", "image", - "itertools", + "itertools 0.10.0", "lazy_static", "minifb", "noise", diff --git a/network/Cargo.toml b/network/Cargo.toml index 11f59cb90b..e20083e2c9 100644 --- a/network/Cargo.toml +++ b/network/Cargo.toml @@ -15,7 +15,7 @@ default = ["metrics","compression"] [dependencies] #serialisation -bincode = "1.2" +bincode = "1.3.1" serde = { version = "1.0" } #sending crossbeam-channel = "0.5" @@ -41,4 +41,4 @@ uvth = { version = ">= 3.0, <= 4.0", default-features = false } clap = { version = "2.33", default-features = false } shellexpand = "2.0.0" tiny_http = "0.7.0" -serde = { version = "1.0", features = ["derive"] } \ No newline at end of file +serde = { version = "1.0", features = ["derive"] } diff --git a/voxygen/Cargo.toml b/voxygen/Cargo.toml index 463d1554c7..015d4c00f9 100644 --- a/voxygen/Cargo.toml +++ b/voxygen/Cargo.toml @@ -59,7 +59,7 @@ server = {package = "veloren-server", path = "../server", optional = true} # Utility backtrace = "0.3.40" -bincode = "1.2" +bincode = "1.3.1" chrono = "0.4.9" cpal = "0.13" copy_dir = "0.1.2" diff --git a/world/Cargo.toml b/world/Cargo.toml index 95edd4a1fe..0a4dac0a80 100644 --- a/world/Cargo.toml +++ b/world/Cargo.toml @@ -12,11 +12,11 @@ default = ["simd"] [dependencies] common = { package = "veloren-common", path = "../common" } common-net = { package = "veloren-common-net", path = "../common/net" } -bincode = "1.2.0" -bitvec = "0.19.4" +bincode = "1.3.1" +bitvec = "0.20.1" fxhash = "0.2.1" image = { version = "0.23.12", default-features = false, features = ["png"] } -itertools = "0.9" +itertools = "0.10" vek = { version = "0.12.0", features = ["serde"] } noise = { version = "0.7", default-features = false } num = "0.3.1"