From 127a4989ebf6e8b529c0c1cf035356c2120f3a9d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 16 Mar 2021 09:49:44 +0000 Subject: [PATCH] build(deps): bump pretty_assertions from 0.6.1 to 0.7.1 Bumps [pretty_assertions](https://github.com/colin-kiegel/rust-pretty-assertions) from 0.6.1 to 0.7.1. - [Release notes](https://github.com/colin-kiegel/rust-pretty-assertions/releases) - [Changelog](https://github.com/colin-kiegel/rust-pretty-assertions/blob/main/CHANGELOG.md) - [Commits](https://github.com/colin-kiegel/rust-pretty-assertions/compare/v0.6.1...v0.7.1) Signed-off-by: dependabot[bot] --- Cargo.lock | 25 +++++++++++++++---- .../Cargo.toml | 2 +- .../Cargo.toml | 2 +- apllodb-immutable-schema-engine/Cargo.toml | 2 +- apllodb-server/Cargo.toml | 2 +- apllodb-shared-components/Cargo.toml | 2 +- apllodb-sql-parser/Cargo.toml | 2 +- apllodb-sql-processor/Cargo.toml | 2 +- 8 files changed, 27 insertions(+), 12 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 952543ca..d799b6f4 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -35,6 +35,15 @@ dependencies = [ "winapi", ] +[[package]] +name = "ansi_term" +version = "0.12.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d52a9bb7ec0cf484c551830a7ce27bd20d67eac647e1befb56b0be4ee39a55d2" +dependencies = [ + "winapi", +] + [[package]] name = "apllodb-client" version = "0.1.0" @@ -596,7 +605,7 @@ version = "2.33.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "37e58ac78573c40708d45522f0d80fa2f01cc4f9b4e2bf749807255454312002" dependencies = [ - "ansi_term", + "ansi_term 0.11.0", "atty", "bitflags", "strsim", @@ -703,6 +712,12 @@ dependencies = [ "syn", ] +[[package]] +name = "diff" +version = "0.1.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0e25ea47919b1560c4e3b7fe0aaab9becf5b84a10325ddf7db0f0ba5e1026499" + [[package]] name = "difference" version = "2.0.0" @@ -1582,13 +1597,13 @@ dependencies = [ [[package]] name = "pretty_assertions" -version = "0.6.1" +version = "0.7.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3f81e1644e1b54f5a68959a29aa86cde704219254669da328ecfdf6a1f09d427" +checksum = "f297542c27a7df8d45de2b0e620308ab883ad232d06c14b76ac3e144bda50184" dependencies = [ - "ansi_term", + "ansi_term 0.12.1", "ctor", - "difference", + "diff", "output_vt100", ] diff --git a/apllodb-immutable-schema-engine-domain/Cargo.toml b/apllodb-immutable-schema-engine-domain/Cargo.toml index d26b955f..37581f17 100644 --- a/apllodb-immutable-schema-engine-domain/Cargo.toml +++ b/apllodb-immutable-schema-engine-domain/Cargo.toml @@ -25,5 +25,5 @@ apllodb-test-support = {path = "../apllodb-test-support"} ctor = "0.1" -pretty_assertions = "0.6" +pretty_assertions = "0.7" rand = "0.8" diff --git a/apllodb-immutable-schema-engine-infra/Cargo.toml b/apllodb-immutable-schema-engine-infra/Cargo.toml index f1ada9ab..39fec565 100644 --- a/apllodb-immutable-schema-engine-infra/Cargo.toml +++ b/apllodb-immutable-schema-engine-infra/Cargo.toml @@ -48,7 +48,7 @@ apllodb-test-support = {path = "../apllodb-test-support"} ctor = "0.1" -pretty_assertions = "0.6" +pretty_assertions = "0.7" rand = "0.8" version-sync = "0.9" diff --git a/apllodb-immutable-schema-engine/Cargo.toml b/apllodb-immutable-schema-engine/Cargo.toml index 929867bf..75f53e9a 100644 --- a/apllodb-immutable-schema-engine/Cargo.toml +++ b/apllodb-immutable-schema-engine/Cargo.toml @@ -25,7 +25,7 @@ ctor = "0.1" env_logger = "0.8" log = "0.4" -pretty_assertions = "0.6" +pretty_assertions = "0.7" futures = "0.3" diff --git a/apllodb-server/Cargo.toml b/apllodb-server/Cargo.toml index 805ff270..7efbb61e 100644 --- a/apllodb-server/Cargo.toml +++ b/apllodb-server/Cargo.toml @@ -37,6 +37,6 @@ ctor = "0.1" async-std = {version = "1.9", features = ["attributes"]} -pretty_assertions = "0.6" +pretty_assertions = "0.7" itertools = "0.10" diff --git a/apllodb-shared-components/Cargo.toml b/apllodb-shared-components/Cargo.toml index 6e2bf473..8fa7943f 100644 --- a/apllodb-shared-components/Cargo.toml +++ b/apllodb-shared-components/Cargo.toml @@ -38,4 +38,4 @@ ctor = "0.1" version-sync = "0.9" -pretty_assertions = "0.6" +pretty_assertions = "0.7" diff --git a/apllodb-sql-parser/Cargo.toml b/apllodb-sql-parser/Cargo.toml index 938fdcb9..da6bb63e 100644 --- a/apllodb-sql-parser/Cargo.toml +++ b/apllodb-sql-parser/Cargo.toml @@ -22,7 +22,7 @@ serde = {version = "1.0", optional = true, features = ["derive"]} apllodb-sql-parser = {path = ".", features = ["test-support"]} apllodb-test-support = {path = "../apllodb-test-support"} -pretty_assertions = "0.6" +pretty_assertions = "0.7" version-sync = "0.9" ctor = "0.1" diff --git a/apllodb-sql-processor/Cargo.toml b/apllodb-sql-processor/Cargo.toml index a5f0d73f..f941e1f5 100644 --- a/apllodb-sql-processor/Cargo.toml +++ b/apllodb-sql-processor/Cargo.toml @@ -34,7 +34,7 @@ ctor = "0.1" mockall = "0.9" -pretty_assertions = "0.6" +pretty_assertions = "0.7" async-std = {version = "1.9", features = ["attributes"]}