-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgo.mod
23 lines (20 loc) · 778 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
module github.com/claudio4/cloudflare-ddns
go 1.18
require (
github.com/cloudflare/cloudflare-go v0.44.0
github.com/jessevdk/go-flags v1.5.0
github.com/miekg/dns v1.1.50
github.com/rs/zerolog v1.27.0
golang.org/x/sys v0.0.0-20220708085239-5a0f0661e09d
)
require (
github.com/google/go-querystring v1.1.0 // indirect
github.com/mattn/go-colorable v0.1.12 // indirect
github.com/mattn/go-isatty v0.0.14 // indirect
github.com/pkg/errors v0.9.1 // indirect
golang.org/x/mod v0.6.0-dev.0.20220419223038-86c51ed26bb4 // indirect
golang.org/x/net v0.0.0-20220412020605-290c469a71a5 // indirect
golang.org/x/text v0.3.7 // indirect
golang.org/x/time v0.0.0-20220224211638-0e9765cccd65 // indirect
golang.org/x/tools v0.1.11-0.20220513164230-dfee1649af67 // indirect
)