-
Notifications
You must be signed in to change notification settings - Fork 44
/
go.mod
35 lines (31 loc) · 1.1 KB
/
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
27
28
29
30
31
32
33
34
35
module github.com/favonia/cloudflare-ddns
go 1.23.0 // with patch version to satisfy CodeQL
retract (
v1.14.1 // nil pointer bug
[v0.0.0, v1.7.99] // incompatible templates for PROXIED before 1.7.1; for safety, 1.7.* are also retracted
)
require (
github.com/cloudflare/cloudflare-go v0.111.0
github.com/containrrr/shoutrrr v0.8.0
github.com/google/go-querystring v1.1.0
github.com/hashicorp/go-retryablehttp v0.7.7
github.com/jellydator/ttlcache/v3 v3.3.0
github.com/robfig/cron/v3 v3.0.1
github.com/stretchr/testify v1.10.0
go.uber.org/mock v0.5.0
golang.org/x/net v0.33.0
golang.org/x/text v0.21.0
)
require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/fatih/color v1.16.0 // indirect
github.com/goccy/go-json v0.10.3 // indirect
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.20 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
golang.org/x/sync v0.10.0 // indirect
golang.org/x/sys v0.28.0 // indirect
golang.org/x/time v0.8.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)