Skip to content
This repository was archived by the owner on Jul 3, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,21 @@ API, `*dnscore.Resolver`, is compatible with `*net.Resolver`. Its low-level API,
`*dnscore.Transport`, provides granular control over performing DNS queries using
specific protocols (including UDP, TCP, TLS, HTTPS, and QUIC).

## 📦 Archived

This repository has been merged into the main [`rbmk`](
https://github.com/rbmk-project/rbmk) repository with
[rbmk#76](https://github.com/rbmk-project/rbmk/pull/76).

Please, update the import paths as follows:

```
github.com/rbmk-project/dnscore => github.com/rbmk-project/rbmk/pkg/dns/dnscore
github.com/rbmk-project/dnscore/dnscoretest => github.com/rbmk-project/rbmk/pkg/dns/dnscoretest
```

This repository is archived for historical reference.

## Features

- High-level `*Resolver` API compatible with `*net.Resolver` for easy integration.
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ go 1.23.0
require (
github.com/miekg/dns v1.1.66
github.com/quic-go/quic-go v0.53.0
github.com/rbmk-project/common v0.21.0
github.com/rbmk-project/common v0.22.0
github.com/stretchr/testify v1.10.0
golang.org/x/net v0.41.0
)
Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZb
github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
github.com/quic-go/quic-go v0.53.0 h1:QHX46sISpG2S03dPeZBgVIZp8dGagIaiu2FiVYvpCZI=
github.com/quic-go/quic-go v0.53.0/go.mod h1:e68ZEaCdyviluZmy44P6Iey98v/Wfz6HCjQEm+l8zTY=
github.com/rbmk-project/common v0.21.0 h1:zfA3FyXWkK4ILTde4SEgIe2sppEwei3YmioGQkicUjo=
github.com/rbmk-project/common v0.21.0/go.mod h1:cUddXWilWAR0pwBFeckADyPXulUkINLl/wQVANAsu+U=
github.com/rbmk-project/common v0.22.0 h1:wM5CsFN2Cc0q5cJaDVRbYL1NC656Sny175/RCX20fB0=
github.com/rbmk-project/common v0.22.0/go.mod h1:J+g7k6klNz1TQR7kQONtfQSuorXjmVPwqmFA7USM3b0=
github.com/stretchr/testify v1.10.0 h1:Xv5erBjTwe/5IxqUQTdXv5kgmIvbHo3QQyRwhJsOfJA=
github.com/stretchr/testify v1.10.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY=
go.uber.org/mock v0.5.2 h1:LbtPTcP8A5k9WPXj54PPPbjcI4Y6lhyOZXn+VS7wNko=
Expand Down
Loading