From c8d12cc031a4e9da16853a2bc90a3e8310b70f8e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 10 Apr 2023 21:06:27 +0000 Subject: [PATCH] Update hecs requirement from 0.7.6 to 0.10.3 Updates the requirements on [hecs](https://github.com/Ralith/hecs) to permit the latest version. - [Release notes](https://github.com/Ralith/hecs/releases) - [Changelog](https://github.com/Ralith/hecs/blob/master/CHANGELOG.md) - [Commits](https://github.com/Ralith/hecs/compare/v0.7.6...v0.10.3) --- updated-dependencies: - dependency-name: hecs dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- client/Cargo.toml | 2 +- common/Cargo.toml | 2 +- server/Cargo.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/client/Cargo.toml b/client/Cargo.toml index bd0fb882..2069e5bb 100644 --- a/client/Cargo.toml +++ b/client/Cargo.toml @@ -31,7 +31,7 @@ quinn = "0.8.3" futures-util = "0.3.1" rustls = { version = "0.20.6", features = ["dangerous_configuration"] } webpki = "0.21.0" -hecs = "0.7.6" +hecs = "0.10.3" rcgen = { version = "0.9.2", default-features = false } memoffset = "0.6" gltf = { version = "1.0.0", default-features = false, features = ["utils"] } diff --git a/common/Cargo.toml b/common/Cargo.toml index 7aca1658..e7df59a3 100644 --- a/common/Cargo.toml +++ b/common/Cargo.toml @@ -17,7 +17,7 @@ quinn = "0.8.3" lazy_static = "1.4.0" fxhash = "0.2.1" tracing = "0.1.10" -hecs = "0.7.6" +hecs = "0.10.3" tracing-subscriber = { version = "0.2.5", default-features = false, features = ["env-filter", "smallvec", "fmt", "ansi", "chrono", "parking_lot"] } rand = "0.7.3" rand_pcg = "0.2.1" diff --git a/server/Cargo.toml b/server/Cargo.toml index 3814eec2..6c5f0001 100644 --- a/server/Cargo.toml +++ b/server/Cargo.toml @@ -20,7 +20,7 @@ anyhow = "1.0.26" rcgen = { version = "0.9.2", default-features = false } hostname = "0.3.0" futures = "0.3.1" -hecs = "0.7.6" +hecs = "0.10.3" rand = { version = "0.7.2", features = [ "small_rng" ] } fxhash = "0.2.1" na = { package = "nalgebra", version = "0.19" }