Skip to content

Commit

Permalink
Merge pull request #92 from hasura/dependabot/cargo/ndc-client-v0.1.0…
Browse files Browse the repository at this point in the history
…-rc.12

Bump ndc-client from v0.1.0-rc.11 to v0.1.0-rc.12
  • Loading branch information
danieljharvey authored Dec 5, 2023
2 parents 1e3a439 + 840c4be commit 3f5eb2e
Show file tree
Hide file tree
Showing 3 changed files with 46 additions and 8 deletions.
46 changes: 41 additions & 5 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions crates/ndc-sqlserver/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ prometheus = "0.13.3"
thiserror = "1.0"

[dev-dependencies]
ndc-client = { git = "https://github.com/hasura/ndc-spec.git", tag = "v0.1.0-rc.11" }
ndc-test = { git = "https://github.com/hasura/ndc-spec.git", tag = "v0.1.0-rc.11" }
ndc-client = { git = "https://github.com/hasura/ndc-spec.git", tag = "v0.1.0-rc.12" }
ndc-test = { git = "https://github.com/hasura/ndc-spec.git", tag = "v0.1.0-rc.12" }

axum = "0.6.19"
axum-test-helper = "0.3.0"
Expand Down
4 changes: 3 additions & 1 deletion crates/ndc-sqlserver/tests/ndc_tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,9 @@ mod ndc_tests {
))
.serve(router.into_make_service());

let base_path = format!("http://{}", server.local_addr());
let base_path =
reqwest::Url::parse(format!("http://{}", server.local_addr()).as_str()).unwrap();

eprintln!("Starting the server on {}", base_path);

tokio::task::spawn(async {
Expand Down

0 comments on commit 3f5eb2e

Please sign in to comment.