diff options
| author | Shulhan <ms@kilabit.info> | 2023-09-23 13:48:54 +0700 |
|---|---|---|
| committer | Shulhan <ms@kilabit.info> | 2023-09-23 13:55:28 +0700 |
| commit | 1b10f5c1d9b0d91e9675963b8307180cbf222b4e (patch) | |
| tree | c77b196f4cf974f7e5cf753bb646de980a299dd4 /go.mod | |
| parent | fb9c1047024a47497318b15dcc8d0d4ed782397a (diff) | |
| download | rescached-1b10f5c1d9b0d91e9675963b8307180cbf222b4e.tar.xz | |
go.mod: update all dependencies and set Go mod version to 1.20
The update on share module affect the following changes,
* lib/dns: removing dns.ZoneRecords, replacing it with
map[string][]*dns.ResourceRecord
* lib/dns: file Name in Zone renamed to Origin
* lib/dns: replace call to Caches.InternalPopulate with
InternalPopulateZone that accept zone as parameter
Diffstat (limited to 'go.mod')
| -rw-r--r-- | go.mod | 15 |
1 files changed, 9 insertions, 6 deletions
@@ -3,17 +3,20 @@ module github.com/shuLhan/rescached-go/v4 -go 1.19 +go 1.20 require ( - git.sr.ht/~shulhan/ciigo v0.9.3 - github.com/shuLhan/share v0.45.0 + git.sr.ht/~shulhan/ciigo v0.10.0 + github.com/shuLhan/share v0.49.1 ) require ( - git.sr.ht/~shulhan/asciidoctor-go v0.4.1 // indirect - golang.org/x/net v0.7.0 // indirect - golang.org/x/sys v0.5.0 // indirect + git.sr.ht/~shulhan/asciidoctor-go v0.5.0 // indirect + github.com/yuin/goldmark v1.5.6 // indirect + github.com/yuin/goldmark-meta v1.1.0 // indirect + golang.org/x/net v0.15.0 // indirect + golang.org/x/sys v0.12.0 // indirect + gopkg.in/yaml.v2 v2.4.0 // indirect ) //replace github.com/shuLhan/share => ../share |
