diff options
author | Sahand Akbarzadeh <sahandevs@gmail.com> | 2024-11-15 14:14:11 +0330 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-11-15 11:44:11 +0100 |
commit | 032ae7fb19bd01c1de28515facd5c3b2ce821924 (patch) | |
tree | 36a95c499cbc8cbb516716d52729d96e5b781a13 /ext/net | |
parent | c9baf3849fdbe161a9251a712a71e2b91eeabf3e (diff) |
feat(ext/fetch): allow embedders to use `hickory_dns_resolver` instead of default `GaiResolver` (#26740)
Allows embedders to use `hickory-dns-resolver` instead of threaded "getaddrinfo" resolver
in the `fetch()` implementation.
Diffstat (limited to 'ext/net')
-rw-r--r-- | ext/net/Cargo.toml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/net/Cargo.toml b/ext/net/Cargo.toml index 245deedd2..1febbd533 100644 --- a/ext/net/Cargo.toml +++ b/ext/net/Cargo.toml @@ -18,7 +18,7 @@ deno_core.workspace = true deno_permissions.workspace = true deno_tls.workspace = true hickory-proto = "0.24" -hickory-resolver = { version = "0.24", features = ["tokio-runtime", "serde-config"] } +hickory-resolver.workspace = true pin-project.workspace = true rustls-tokio-stream.workspace = true serde.workspace = true |