From aa6b634e649138a1d4d47c394a9f663e3a7cd482 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 17 Jun 2022 09:37:21 +0000 Subject: [PATCH 1/4] Update indexmap requirement from ~1.7 to ~1.9 Updates the requirements on [indexmap](https://github.com/bluss/indexmap) to permit the latest version. - [Release notes](https://github.com/bluss/indexmap/releases) - [Changelog](https://github.com/bluss/indexmap/blob/master/RELEASES.md) - [Commits](https://github.com/bluss/indexmap/compare/1.7.0...1.9.0) --- updated-dependencies: - dependency-name: indexmap dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- core-traits/Cargo.toml | 2 +- core/Cargo.toml | 2 +- db/Cargo.toml | 2 +- query-projector/Cargo.toml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/core-traits/Cargo.toml b/core-traits/Cargo.toml index c43d6231..2f8751e7 100644 --- a/core-traits/Cargo.toml +++ b/core-traits/Cargo.toml @@ -11,7 +11,7 @@ path = "lib.rs" chrono = { version = "~0.4", features = ["serde"] } enum-set = "~0.0.8" lazy_static = "~1.4" -indexmap = "~1.7" +indexmap = "~1.9" ordered-float = { version = "~2.8", features = ["serde"] } uuid = { version = "~1.0", features = ["v4", "serde"] } serde = { version = "~1.0", features = ["rc"] } diff --git a/core/Cargo.toml b/core/Cargo.toml index 0bc4142b..65e2a46d 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -7,7 +7,7 @@ workspace = ".." chrono = { version = "~0.4", features = ["serde"] } enum-set = "~0.0" failure = "~0.1" -indexmap = "~1.7" +indexmap = "~1.9" ordered-float = { version = "~2.8", features = ["serde"] } uuid = { version = "~1.0", features = ["v4", "serde"] } diff --git a/db/Cargo.toml b/db/Cargo.toml index 15de08f9..bc47a6be 100644 --- a/db/Cargo.toml +++ b/db/Cargo.toml @@ -10,7 +10,7 @@ syncable = ["serde", "serde_json", "serde_derive"] [dependencies] failure = "~0.1" -indexmap = "~1.7" +indexmap = "~1.9" itertools = "~0.10" lazy_static = "~1.4" log = "~0.4" diff --git a/query-projector/Cargo.toml b/query-projector/Cargo.toml index 61041c3e..822e500a 100644 --- a/query-projector/Cargo.toml +++ b/query-projector/Cargo.toml @@ -8,7 +8,7 @@ sqlcipher = ["rusqlite/sqlcipher"] [dependencies] failure = "~0.1" -indexmap = "~1.7" +indexmap = "~1.9" [dependencies.rusqlite] version = "~0.26" From 8f226ca0507364b5f1aa0837740d1c982560289f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 27 Mar 2023 10:11:21 +0000 Subject: [PATCH 2/4] Update rusqlite requirement from ~0.26 to ~0.29 Updates the requirements on [rusqlite](https://github.com/rusqlite/rusqlite) to permit the latest version. - [Release notes](https://github.com/rusqlite/rusqlite/releases) - [Changelog](https://github.com/rusqlite/rusqlite/blob/master/Changelog.md) - [Commits](https://github.com/rusqlite/rusqlite/compare/rusqlite-0.26.1...v0.29.0) --- updated-dependencies: - dependency-name: rusqlite dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Cargo.toml | 2 +- db-traits/Cargo.toml | 2 +- db/Cargo.toml | 2 +- public-traits/Cargo.toml | 2 +- query-projector-traits/Cargo.toml | 2 +- query-projector/Cargo.toml | 2 +- query-pull/Cargo.toml | 2 +- query-sql/Cargo.toml | 2 +- sql/Cargo.toml | 2 +- tolstoy-traits/Cargo.toml | 2 +- tolstoy/Cargo.toml | 2 +- tools/cli/Cargo.toml | 2 +- transaction/Cargo.toml | 2 +- 13 files changed, 13 insertions(+), 13 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 735aee39..b32c1873 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -53,7 +53,7 @@ log = "~0.4" uuid = { version = "~1.0", features = ["v4", "serde"] } [dependencies.rusqlite] -version = "~0.26" +version = "~0.29" features = ["limits", "bundled"] [dependencies.edn] diff --git a/db-traits/Cargo.toml b/db-traits/Cargo.toml index 8f57fe3d..0ab3a2f1 100644 --- a/db-traits/Cargo.toml +++ b/db-traits/Cargo.toml @@ -21,5 +21,5 @@ path = "../edn" path = "../core-traits" [dependencies.rusqlite] -version = "~0.26" +version = "~0.29" features = ["limits", "bundled"] diff --git a/db/Cargo.toml b/db/Cargo.toml index 15de08f9..a4f9c1c1 100644 --- a/db/Cargo.toml +++ b/db/Cargo.toml @@ -22,7 +22,7 @@ serde_json = { version = "~1.0", optional = true } serde_derive = { version = "~1.0", optional = true } [dependencies.rusqlite] -version = "~0.26" +version = "~0.29" features = ["limits", "bundled"] [dependencies.edn] diff --git a/public-traits/Cargo.toml b/public-traits/Cargo.toml index 0804984a..8c3b5e27 100644 --- a/public-traits/Cargo.toml +++ b/public-traits/Cargo.toml @@ -20,7 +20,7 @@ tokio = { version = "1.8.0", features = ["full"] } uuid = "~1.0" [dependencies.rusqlite] -version = "~0.26" +version = "~0.29" features = ["limits", "bundled"] [dependencies.hyper] diff --git a/query-projector-traits/Cargo.toml b/query-projector-traits/Cargo.toml index 60abc39a..7362ee5e 100644 --- a/query-projector-traits/Cargo.toml +++ b/query-projector-traits/Cargo.toml @@ -15,7 +15,7 @@ failure = "~0.1" failure_derive = "~0.1" [dependencies.rusqlite] -version = "~0.26" +version = "~0.29" features = ["limits", "bundled"] [dependencies.edn] diff --git a/query-projector/Cargo.toml b/query-projector/Cargo.toml index 61041c3e..c8cfdd85 100644 --- a/query-projector/Cargo.toml +++ b/query-projector/Cargo.toml @@ -11,7 +11,7 @@ failure = "~0.1" indexmap = "~1.7" [dependencies.rusqlite] -version = "~0.26" +version = "~0.29" features = ["limits", "bundled"] [dependencies.core_traits] diff --git a/query-pull/Cargo.toml b/query-pull/Cargo.toml index abe31c4e..bc9f0dcc 100644 --- a/query-pull/Cargo.toml +++ b/query-pull/Cargo.toml @@ -13,7 +13,7 @@ failure = "~0.1" path = "../query-pull-traits" [dependencies.rusqlite] -version = "~0.26" +version = "~0.29" features = ["limits", "bundled"] [dependencies.edn] diff --git a/query-sql/Cargo.toml b/query-sql/Cargo.toml index 81a562eb..490c6f0d 100644 --- a/query-sql/Cargo.toml +++ b/query-sql/Cargo.toml @@ -4,7 +4,7 @@ version = "0.0.2" workspace = ".." [dependencies.rusqlite] -version = "~0.26" +version = "~0.29" features = ["limits", "bundled"] [dependencies.edn] diff --git a/sql/Cargo.toml b/sql/Cargo.toml index 2893b2bb..ee8f8e38 100644 --- a/sql/Cargo.toml +++ b/sql/Cargo.toml @@ -11,7 +11,7 @@ failure = "~0.1" ordered-float = "~2.8" [dependencies.rusqlite] -version = "~0.26" +version = "~0.29" features = ["limits", "bundled"] [dependencies.core_traits] diff --git a/tolstoy-traits/Cargo.toml b/tolstoy-traits/Cargo.toml index 0ea6b071..e7b23bc9 100644 --- a/tolstoy-traits/Cargo.toml +++ b/tolstoy-traits/Cargo.toml @@ -19,7 +19,7 @@ serde_json = "~1.0" uuid = { version = "~1.0" } [dependencies.rusqlite] -version = "~0.26" +version = "~0.29" features = ["limits", "bundled"] [dependencies.db_traits] diff --git a/tolstoy/Cargo.toml b/tolstoy/Cargo.toml index f12388d7..ab558b92 100644 --- a/tolstoy/Cargo.toml +++ b/tolstoy/Cargo.toml @@ -25,7 +25,7 @@ lazy_static = "~1.4" uuid = { version = "~1.0", features = ["v4", "serde"] } [dependencies.rusqlite] -version = "~0.26" +version = "~0.29" features = ["limits", "bundled"] [dependencies.edn] diff --git a/tools/cli/Cargo.toml b/tools/cli/Cargo.toml index 5bf10e9d..dbf8b176 100644 --- a/tools/cli/Cargo.toml +++ b/tools/cli/Cargo.toml @@ -36,7 +36,7 @@ bytes = { version = "1.0.1", features = ["serde"] } hex = "0.4.3" [dependencies.rusqlite] -version = "~0.26" +version = "~0.29" features = ["limits", "bundled"] [dependencies.mentat] diff --git a/transaction/Cargo.toml b/transaction/Cargo.toml index d76dcfd7..49446b5c 100644 --- a/transaction/Cargo.toml +++ b/transaction/Cargo.toml @@ -10,7 +10,7 @@ sqlcipher = ["rusqlite/sqlcipher"] failure = "~0.1" [dependencies.rusqlite] -version = "~0.26" +version = "~0.29" features = ["limits", "bundled"] [dependencies.edn] From 5fdb9a4970b911587c6075b0de692599751fb2a5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 29 Mar 2023 10:02:12 +0000 Subject: [PATCH 3/4] Update tempfile requirement from ~3.2 to ~3.5 Updates the requirements on [tempfile](https://github.com/Stebalien/tempfile) to permit the latest version. - [Release notes](https://github.com/Stebalien/tempfile/releases) - [Changelog](https://github.com/Stebalien/tempfile/blob/master/NEWS) - [Commits](https://github.com/Stebalien/tempfile/commits) --- updated-dependencies: - dependency-name: tempfile dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- tools/cli/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/cli/Cargo.toml b/tools/cli/Cargo.toml index 5bf10e9d..e9176f5a 100644 --- a/tools/cli/Cargo.toml +++ b/tools/cli/Cargo.toml @@ -29,7 +29,7 @@ lazy_static = "~1.4" linefeed = "~0.6" log = "~0.4" tabwriter = "~1.2" -tempfile = "~3.2" +tempfile = "~3.5" termion = "~1.5" time = "~0.3" bytes = { version = "1.0.1", features = ["serde"] } From c10575e04d43ec0f7ca7dcab953edbf0ed6274b2 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 31 Mar 2023 10:02:08 +0000 Subject: [PATCH 4/4] Update pretty requirement from ~0.10 to ~0.12 Updates the requirements on [pretty](https://github.com/Marwes/pretty.rs) to permit the latest version. - [Release notes](https://github.com/Marwes/pretty.rs/releases) - [Changelog](https://github.com/Marwes/pretty.rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/Marwes/pretty.rs/compare/v0.10.0...v0.12.0) --- updated-dependencies: - dependency-name: pretty dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- edn/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/edn/Cargo.toml b/edn/Cargo.toml index 9ac64a04..3a4b73d4 100644 --- a/edn/Cargo.toml +++ b/edn/Cargo.toml @@ -14,7 +14,7 @@ chrono = "~0.4" itertools = "~0.10" num = "~0.4" ordered-float = "~2.8" -pretty = "~0.10" +pretty = "~0.12" uuid = { version = "~1.0", features = ["v4", "serde"] } serde = { version = "~1.0", optional = true } serde_derive = { version = "~1.0", optional = true }