From 32ce6d2129619afd19ed8d2855d172730b7feac1 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 2 Jul 2021 21:20:42 +0000 Subject: [PATCH 1/3] Update hyper requirement from ~0.13 to ~0.14 Updates the requirements on [hyper](https://github.com/hyperium/hyper) to permit the latest version. - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v0.13.0...v0.14.9) --- updated-dependencies: - dependency-name: hyper dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- public-traits/Cargo.toml | 2 +- tolstoy-traits/Cargo.toml | 2 +- tolstoy/Cargo.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/public-traits/Cargo.toml b/public-traits/Cargo.toml index f1a4e2f4..d67d0921 100644 --- a/public-traits/Cargo.toml +++ b/public-traits/Cargo.toml @@ -24,7 +24,7 @@ version = "~0.24" features = ["limits", "bundled"] [dependencies.hyper] -version = "~0.13" +version = "~0.14" optional = true [dependencies.serde_json] diff --git a/tolstoy-traits/Cargo.toml b/tolstoy-traits/Cargo.toml index 2a331e9a..4c2d648d 100644 --- a/tolstoy-traits/Cargo.toml +++ b/tolstoy-traits/Cargo.toml @@ -14,7 +14,7 @@ sqlcipher = ["rusqlite/sqlcipher"] failure = "~0.1" failure_derive = "~0.1" http = "~0.2" -hyper = "~0.13" +hyper = "~0.14" serde_json = "~1.0" uuid = { version = "~0.8" } diff --git a/tolstoy/Cargo.toml b/tolstoy/Cargo.toml index 8e149521..d0031c86 100644 --- a/tolstoy/Cargo.toml +++ b/tolstoy/Cargo.toml @@ -11,7 +11,7 @@ sqlcipher = ["rusqlite/sqlcipher"] [dependencies] failure = "~0.1" futures = "~0.3" -hyper = "~0.13" +hyper = "~0.14" hyper-tls = "~0.4" http = "~0.2" log = "~0.4" From c8c1363b14fbc91001a3ef86d09b15828f661fb9 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 2 Jul 2021 21:21:07 +0000 Subject: [PATCH 2/3] Update ordered-float requirement from ~2.0 to ~2.5 Updates the requirements on [ordered-float](https://github.com/reem/rust-ordered-float) to permit the latest version. - [Release notes](https://github.com/reem/rust-ordered-float/releases) - [Commits](https://github.com/reem/rust-ordered-float/compare/v2.0.0...v2.5.1) --- updated-dependencies: - dependency-name: ordered-float dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- core-traits/Cargo.toml | 2 +- core/Cargo.toml | 2 +- db/Cargo.toml | 2 +- edn/Cargo.toml | 2 +- sql/Cargo.toml | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/core-traits/Cargo.toml b/core-traits/Cargo.toml index fbbc94fc..8fe675d9 100644 --- a/core-traits/Cargo.toml +++ b/core-traits/Cargo.toml @@ -12,7 +12,7 @@ chrono = { version = "~0.4", features = ["serde"] } enum-set = "~0.0.8" lazy_static = "~1.4" indexmap = "~1.5" -ordered-float = { version = "~2.0", features = ["serde"] } +ordered-float = { version = "~2.5", features = ["serde"] } uuid = { version = "~0.8", features = ["v4", "serde"] } serde = { version = "~1.0", features = ["rc"] } serde_derive = "~1.0" diff --git a/core/Cargo.toml b/core/Cargo.toml index d830962c..c25fe57a 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -8,7 +8,7 @@ chrono = { version = "~0.4", features = ["serde"] } enum-set = "~0.0" failure = "~0.1" indexmap = "~1.5" -ordered-float = { version = "~2.0", features = ["serde"] } +ordered-float = { version = "~2.5", features = ["serde"] } uuid = { version = "~0.8", features = ["v4", "serde"] } [dependencies.core_traits] diff --git a/db/Cargo.toml b/db/Cargo.toml index 2197c0a9..46b2ada6 100644 --- a/db/Cargo.toml +++ b/db/Cargo.toml @@ -14,7 +14,7 @@ indexmap = "~1.5" itertools = "~0.9" lazy_static = "~1.4" log = "~0.4" -ordered-float = "~2.0" +ordered-float = "~2.5" time = "~0.2" petgraph = "~0.5" serde = { version = "~1.0", optional = true } diff --git a/edn/Cargo.toml b/edn/Cargo.toml index 5c0ba7fd..109e5a01 100644 --- a/edn/Cargo.toml +++ b/edn/Cargo.toml @@ -13,7 +13,7 @@ readme = "./README.md" chrono = "~0.4" itertools = "~0.9" num = "~0.3" -ordered-float = "~2.0" +ordered-float = "~2.5" pretty = "~0.10" uuid = { version = "~0.8", features = ["v4", "serde"] } serde = { version = "~1.0", optional = true } diff --git a/sql/Cargo.toml b/sql/Cargo.toml index 6f0685a3..b60f6a61 100644 --- a/sql/Cargo.toml +++ b/sql/Cargo.toml @@ -8,7 +8,7 @@ sqlcipher = ["rusqlite/sqlcipher"] [dependencies] failure = "~0.1" -ordered-float = "~2.0" +ordered-float = "~2.5" [dependencies.rusqlite] version = "~0.24" From 44036160d008eb77161de4c5703962ae31de75ed Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 2 Jul 2021 21:21:18 +0000 Subject: [PATCH 3/3] Update env_logger requirement from 0.7 to 0.8 Updates the requirements on [env_logger](https://github.com/env-logger-rs/env_logger) to permit the latest version. - [Release notes](https://github.com/env-logger-rs/env_logger/releases) - [Changelog](https://github.com/env-logger-rs/env_logger/blob/main/CHANGELOG.md) - [Commits](https://github.com/env-logger-rs/env_logger/commits/v0.8.4) --- updated-dependencies: - dependency-name: env_logger dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- db/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/db/Cargo.toml b/db/Cargo.toml index 2197c0a9..d7ca630a 100644 --- a/db/Cargo.toml +++ b/db/Cargo.toml @@ -45,5 +45,5 @@ path = "../sql" version = "~1.2" [dev-dependencies] -env_logger = "0.7" +env_logger = "0.8" #tabwriter = { version = "1.2.1" }