-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathgo.mod
More file actions
24 lines (21 loc) · 667 Bytes
/
go.mod
File metadata and controls
24 lines (21 loc) · 667 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
module github.com/benduncan/eclipso
go 1.24.0
require (
github.com/aws/aws-sdk-go v1.44.266
github.com/fsnotify/fsnotify v1.6.0
github.com/miekg/dns v1.1.72
github.com/pelletier/go-toml/v2 v2.0.7
github.com/sirupsen/logrus v1.9.3
github.com/stretchr/testify v1.8.1
)
require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/jmespath/go-jmespath v0.4.0 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
golang.org/x/mod v0.31.0 // indirect
golang.org/x/net v0.48.0 // indirect
golang.org/x/sync v0.19.0 // indirect
golang.org/x/sys v0.39.0 // indirect
golang.org/x/tools v0.40.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)