From 3e6d9c69537f7caf33ef2b9f4abbbe97efd5c7ec Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 6 Dec 2024 13:45:29 +0000 Subject: [PATCH] chore(deps): Bump ndc-sdk from v0.4.0 to v0.5.0 Bumps [ndc-sdk](https://github.com/hasura/ndc-sdk-rs) from v0.4.0 to v0.5.0. - [Release notes](https://github.com/hasura/ndc-sdk-rs/releases) - [Changelog](https://github.com/hasura/ndc-sdk-rs/blob/main/CHANGELOG.md) - [Commits](https://github.com/hasura/ndc-sdk-rs/compare/665509f7d3b47ce4f014fc23f817a3599ba13933...15840777b3700112a508bb116f1131804e800c13) --- updated-dependencies: - dependency-name: ndc-sdk dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Cargo.lock | 28 +++++++++++++++++++++++----- Cargo.toml | 2 +- 2 files changed, 24 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 5b5bdb579..ec08ad9af 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1693,17 +1693,16 @@ dependencies = [ [[package]] name = "ndc-sdk" -version = "0.4.0" -source = "git+https://github.com/hasura/ndc-sdk-rs.git?tag=v0.4.0#665509f7d3b47ce4f014fc23f817a3599ba13933" +version = "0.5.0" +source = "git+https://github.com/hasura/ndc-sdk-rs.git?tag=v0.5.0#15840777b3700112a508bb116f1131804e800c13" dependencies = [ "async-trait", "axum", "axum-extra", - "bytes", "clap", "http", - "mime", "ndc-models", + "ndc-sdk-core", "ndc-test", "opentelemetry", "opentelemetry-http", @@ -1713,7 +1712,6 @@ dependencies = [ "opentelemetry_sdk", "prometheus", "reqwest", - "serde", "serde_json", "thiserror", "tokio", @@ -1724,6 +1722,26 @@ dependencies = [ "url", ] +[[package]] +name = "ndc-sdk-core" +version = "0.5.0" +source = "git+https://github.com/hasura/ndc-sdk-rs.git?tag=v0.5.0#15840777b3700112a508bb116f1131804e800c13" +dependencies = [ + "async-trait", + "axum", + "bytes", + "http", + "mime", + "ndc-models", + "ndc-test", + "prometheus", + "serde", + "serde_json", + "thiserror", + "tokio", + "tracing", +] + [[package]] name = "ndc-test" version = "0.1.6" diff --git a/Cargo.toml b/Cargo.toml index 0adff9d8f..7187fb0d3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -32,7 +32,7 @@ too_many_lines = "allow" [workspace.dependencies] ndc-models = { git = "https://github.com/hasura/ndc-spec.git", tag = "v0.1.6" } -ndc-sdk = { git = "https://github.com/hasura/ndc-sdk-rs.git", tag = "v0.4.0" } +ndc-sdk = { git = "https://github.com/hasura/ndc-sdk-rs.git", tag = "v0.5.0" } ndc-test = { git = "https://github.com/hasura/ndc-spec.git", tag = "v0.1.6" } anyhow = "1"