From c7894447eb5be069c9b075447f0a2f7871b3d8a1 Mon Sep 17 00:00:00 2001 From: Ryan Dahl Date: Wed, 5 Jun 2024 17:39:39 -0400 Subject: chore: upgrade trust-dns-resolver and friends (#24108) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit To avoid duplicate winreg crate in #24056 --------- Co-authored-by: Bartek IwaƄczuk --- tests/Cargo.toml | 4 ++-- tests/integration/run_tests.rs | 7 ++----- 2 files changed, 4 insertions(+), 7 deletions(-) (limited to 'tests') diff --git a/tests/Cargo.toml b/tests/Cargo.toml index 46a152e1b..9d513571b 100644 --- a/tests/Cargo.toml +++ b/tests/Cargo.toml @@ -57,8 +57,8 @@ serde.workspace = true test_util.workspace = true tokio.workspace = true tower-lsp.workspace = true -trust-dns-client = "=0.22.0" -trust-dns-server = "=0.22.1" +trust-dns-client = "=0.23.2" +trust-dns-server = "=0.23.2" url.workspace = true uuid = { workspace = true, features = ["serde"] } zeromq.workspace = true diff --git a/tests/integration/run_tests.rs b/tests/integration/run_tests.rs index 55841b901..0dadc0079 100644 --- a/tests/integration/run_tests.rs +++ b/tests/integration/run_tests.rs @@ -4011,11 +4011,8 @@ async fn test_resolve_dns() { ) .unwrap(); let lexer = Lexer::new(&zone_file); - let records = Parser::new().parse( - lexer, - Some(Name::from_str("example.com").unwrap()), - None, - ); + let records = + Parser::new().parse(lexer, Some(Name::from_str("example.com").unwrap())); if records.is_err() { panic!("failed to parse: {:?}", records.err()) } -- cgit v1.2.3