1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
diff --git a/hickory-dns-0.25.1/Cargo.toml b/hickory-dns-0.25.1/Cargo.toml
index 851769d..7cb6be5 100644
--- a/hickory-dns-0.25.1/Cargo.toml
+++ b/hickory-dns-0.25.1/Cargo.toml
@@ -258,6 +258,10 @@ default-features = false
version = "1.3.4"
default-features = false
+[dev-dependencies.test-support]
+git = "https://github.com/hickory-dns/hickory-dns"
+tag = "v0.25.1"
+
[dev-dependencies.toml]
version = "0.8.14"
--- src/hickory-dns-0.25.1/Cargo.lock.bak 2025-04-11 12:53:26.451869918 +0200
+++ src/hickory-dns-0.25.1/Cargo.lock 2025-04-11 12:53:59.902967717 +0200
@@ -673,6 +673,7 @@
"rustls-pki-types",
"serde",
"socket2",
+ "test-support",
"time",
"tokio",
"toml",
@@ -1893,6 +1894,15 @@
checksum = "7b2093cf4c8eb1e67749a6762251bc9cd836b6fc171623bd0a9d324d37af2417"
[[package]]
+name = "test-support"
+version = "0.25.1"
+source = "git+https://github.com/hickory-dns/hickory-dns?tag=v0.25.1#9cf275f750968c1612d63d585398734ae4a1b50b"
+dependencies = [
+ "tracing",
+ "tracing-subscriber",
+]
+
+[[package]]
name = "thiserror"
version = "1.0.69"
source = "registry+https://github.com/rust-lang/crates.io-index"
|