From b8d2ed56b4120b38414cede867cc86ebc80dab4a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 5 Feb 2024 13:55:49 +0000 Subject: [PATCH] chore(deps): Bump ndc-test from v0.1.0-rc.13 to v0.1.0-rc.14 Bumps [ndc-test](https://github.com/hasura/ndc-spec) from v0.1.0-rc.13 to v0.1.0-rc.14. - [Commits](https://github.com/hasura/ndc-spec/compare/1f9b2a996ad74ac4bc97a783c4d014a3fd46b08e...cd24992ea77010e1ef2dff18f7d5656fb0546f3b) --- updated-dependencies: - dependency-name: ndc-test dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Cargo.lock | 54 +++++++++++++++++++---- crates/connectors/ndc-postgres/Cargo.toml | 2 +- crates/tests/databases-tests/Cargo.toml | 2 +- crates/tests/tests-common/Cargo.toml | 2 +- 4 files changed, 48 insertions(+), 12 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 9cf6c585a..5dd5cd4cb 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -604,7 +604,7 @@ dependencies = [ "axum", "insta", "ndc-postgres", - "ndc-test", + "ndc-test 0.1.0 (git+https://github.com/hasura/ndc-spec.git?tag=v0.1.0-rc.14)", "openapi-generator", "schemars", "serde_json", @@ -1475,6 +1475,23 @@ dependencies = [ "url", ] +[[package]] +name = "ndc-client" +version = "0.1.0" +source = "git+https://github.com/hasura/ndc-spec.git?tag=v0.1.0-rc.14#cd24992ea77010e1ef2dff18f7d5656fb0546f3b" +dependencies = [ + "async-trait", + "indexmap 2.2.1", + "opentelemetry", + "reqwest", + "schemars", + "serde", + "serde_derive", + "serde_json", + "serde_with 2.3.3", + "url", +] + [[package]] name = "ndc-postgres" version = "0.1.0" @@ -1485,9 +1502,9 @@ dependencies = [ "env_logger", "hyper", "insta", - "ndc-client", + "ndc-client 0.1.0 (git+https://github.com/hasura/ndc-spec.git?tag=v0.1.0-rc.13)", "ndc-sdk", - "ndc-test", + "ndc-test 0.1.0 (git+https://github.com/hasura/ndc-spec.git?tag=v0.1.0-rc.14)", "percent-encoding", "prometheus", "query-engine-execution", @@ -1522,8 +1539,8 @@ dependencies = [ "http", "indexmap 2.2.1", "mime", - "ndc-client", - "ndc-test", + "ndc-client 0.1.0 (git+https://github.com/hasura/ndc-spec.git?tag=v0.1.0-rc.13)", + "ndc-test 0.1.0 (git+https://github.com/hasura/ndc-spec.git?tag=v0.1.0-rc.13)", "opentelemetry", "opentelemetry-http", "opentelemetry-otlp", @@ -1553,7 +1570,26 @@ dependencies = [ "clap", "colored", "indexmap 2.2.1", - "ndc-client", + "ndc-client 0.1.0 (git+https://github.com/hasura/ndc-spec.git?tag=v0.1.0-rc.13)", + "proptest", + "reqwest", + "semver", + "serde", + "serde_json", + "thiserror", + "tokio", +] + +[[package]] +name = "ndc-test" +version = "0.1.0" +source = "git+https://github.com/hasura/ndc-spec.git?tag=v0.1.0-rc.14#cd24992ea77010e1ef2dff18f7d5656fb0546f3b" +dependencies = [ + "async-trait", + "clap", + "colored", + "indexmap 2.2.1", + "ndc-client 0.1.0 (git+https://github.com/hasura/ndc-spec.git?tag=v0.1.0-rc.14)", "proptest", "reqwest", "semver", @@ -1737,7 +1773,7 @@ version = "1.0.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "75e56d5c441965b6425165b7e3223cc933ca469834f4a8b4786817a1f9dc4f13" dependencies = [ - "indexmap 1.9.3", + "indexmap 2.2.1", "serde", "serde_json", ] @@ -3146,10 +3182,10 @@ dependencies = [ "env_logger", "hyper", "jsonschema", - "ndc-client", + "ndc-client 0.1.0 (git+https://github.com/hasura/ndc-spec.git?tag=v0.1.0-rc.13)", "ndc-postgres", "ndc-sdk", - "ndc-test", + "ndc-test 0.1.0 (git+https://github.com/hasura/ndc-spec.git?tag=v0.1.0-rc.14)", "reqwest", "schemars", "serde", diff --git a/crates/connectors/ndc-postgres/Cargo.toml b/crates/connectors/ndc-postgres/Cargo.toml index 81c96fa98..226e860ed 100644 --- a/crates/connectors/ndc-postgres/Cargo.toml +++ b/crates/connectors/ndc-postgres/Cargo.toml @@ -35,7 +35,7 @@ url = "2.5.0" [dev-dependencies] ndc-client = { git = "https://github.com/hasura/ndc-spec.git", tag = "v0.1.0-rc.13" } -ndc-test = { git = "https://github.com/hasura/ndc-spec.git", tag = "v0.1.0-rc.13" } +ndc-test = { git = "https://github.com/hasura/ndc-spec.git", tag = "v0.1.0-rc.14" } tests-common = { path = "../../tests/tests-common" } axum = "0.6.20" diff --git a/crates/tests/databases-tests/Cargo.toml b/crates/tests/databases-tests/Cargo.toml index 6135433cb..7de75040d 100644 --- a/crates/tests/databases-tests/Cargo.toml +++ b/crates/tests/databases-tests/Cargo.toml @@ -22,7 +22,7 @@ postgres = [] [dependencies] openapi-generator = { path = "../../documentation/openapi" } ndc-postgres = { path = "../../connectors/ndc-postgres" } -ndc-test = { git = "https://github.com/hasura/ndc-spec.git", tag = "v0.1.0-rc.13" } +ndc-test = { git = "https://github.com/hasura/ndc-spec.git", tag = "v0.1.0-rc.14" } tests-common = { path = "../tests-common" } axum = "0.6.20" diff --git a/crates/tests/tests-common/Cargo.toml b/crates/tests/tests-common/Cargo.toml index ab6912445..d028cbcf3 100644 --- a/crates/tests/tests-common/Cargo.toml +++ b/crates/tests/tests-common/Cargo.toml @@ -12,7 +12,7 @@ path = "src/lib.rs" ndc-client = { git = "https://github.com/hasura/ndc-spec.git", tag = "v0.1.0-rc.13" } ndc-postgres = { path = "../../connectors/ndc-postgres" } ndc-sdk = { git = "https://github.com/hasura/ndc-hub.git", rev = "3b6c480" } -ndc-test = { git = "https://github.com/hasura/ndc-spec.git", tag = "v0.1.0-rc.13" } +ndc-test = { git = "https://github.com/hasura/ndc-spec.git", tag = "v0.1.0-rc.14" } axum = "0.6.20" axum-test-helper = "0.3.0"