From d076b550292b4cfcff3dc89a02df3919ede1aa27 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 13 Feb 2023 15:00:37 +0000 Subject: [PATCH] Bump test-case from 2.2.2 to 3.0.0 Bumps [test-case](https://github.com/frondeus/test-case) from 2.2.2 to 3.0.0. - [Release notes](https://github.com/frondeus/test-case/releases) - [Changelog](https://github.com/frondeus/test-case/blob/master/CHANGELOG.md) - [Commits](https://github.com/frondeus/test-case/compare/v2.2.2...v3.0.0) --- updated-dependencies: - dependency-name: test-case dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- Cargo.lock | 23 ++++++++++++++++++----- odbc-api/Cargo.toml | 2 +- 2 files changed, 19 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 2315efc0..3b10dc5f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1558,18 +1558,18 @@ checksum = "95059e91184749cb66be6dc994f67f182b6d897cb3df74a5bf66b5e709295fd8" [[package]] name = "test-case" -version = "2.2.2" +version = "3.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "21d6cf5a7dffb3f9dceec8e6b8ca528d9bd71d36c9f074defb548ce161f598c0" +checksum = "679b019fb241da62cc449b33b224d19ebe1c6767b495569765115dd7f7f9fba4" dependencies = [ "test-case-macros", ] [[package]] -name = "test-case-macros" -version = "2.2.2" +name = "test-case-core" +version = "3.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e45b7bf6e19353ddd832745c8fcf77a17a93171df7151187f26623f2b75b5b26" +checksum = "72dc21b5887f4032c4656502d085dc28f2afbb686f25f216472bb0526f4b1b88" dependencies = [ "cfg-if", "proc-macro-error", @@ -1578,6 +1578,19 @@ dependencies = [ "syn", ] +[[package]] +name = "test-case-macros" +version = "3.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f3786898e0be151a96f730fd529b0e8a10f5990fa2a7ea14e37ca27613c05190" +dependencies = [ + "proc-macro-error", + "proc-macro2", + "quote", + "syn", + "test-case-core", +] + [[package]] name = "textwrap" version = "0.16.0" diff --git a/odbc-api/Cargo.toml b/odbc-api/Cargo.toml index accaa327..389918f2 100644 --- a/odbc-api/Cargo.toml +++ b/odbc-api/Cargo.toml @@ -76,7 +76,7 @@ lazy_static = "1.4.0" env_logger = "0.10.0" anyhow = "1.0.69" csv = "1.1.6" -test-case = "2.2.2" +test-case = "3.0.0" tempfile = "3.3.0" criterion = { version = "0.4.0", features = ["html_reports"] } tokio = { version = "1.25.0", features = ["rt", "macros", "time"] }