-
Notifications
You must be signed in to change notification settings - Fork 2
/
go.mod
26 lines (23 loc) · 991 Bytes
/
go.mod
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
module github.com/libp2p/go-doh-resolver
go 1.21
require (
github.com/ipfs/go-log/v2 v2.1.3
github.com/miekg/dns v1.1.41
github.com/multiformats/go-multiaddr-dns v0.3.0
)
require (
github.com/minio/blake2b-simd v0.0.0-20160723061019-3f5f724cb5b1 // indirect
github.com/minio/sha256-simd v0.1.1-0.20190913151208-6de447530771 // indirect
github.com/mr-tron/base58 v1.1.2 // indirect
github.com/multiformats/go-multiaddr v0.2.0 // indirect
github.com/multiformats/go-multihash v0.0.8 // indirect
github.com/multiformats/go-varint v0.0.1 // indirect
github.com/spaolacci/murmur3 v1.1.0 // indirect
go.uber.org/atomic v1.7.0 // indirect
go.uber.org/multierr v1.6.0 // indirect
go.uber.org/zap v1.16.0 // indirect
golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9 // indirect
golang.org/x/net v0.0.0-20210226172049-e18ecbb05110 // indirect
golang.org/x/sys v0.0.0-20210303074136-134d130e1a04 // indirect
golang.org/x/tools v0.0.0-20210106214847-113979e3529a // indirect
)