diff --git a/Cargo.lock b/Cargo.lock index 5b5bdb57..ec08ad9a 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 0adff9d8..7187fb0d 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"