-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathgo.mod
30 lines (25 loc) · 923 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
27
28
29
30
module github.com/cgrindel/rules_swift_package_manager
go 1.23.0
toolchain go1.24.2
// Workaround for inconsistent Go versions being used in rules_bazel_integration_test tests.
// toolchain go1.21.5
require (
github.com/bazelbuild/bazel-gazelle v0.42.0
github.com/bazelbuild/buildtools v0.0.0-20240918101019-be1c24cc9a44
github.com/creasty/defaults v1.8.0
github.com/deckarep/golang-set/v2 v2.8.0
github.com/spf13/cobra v1.9.1
github.com/stretchr/testify v1.10.0
golang.org/x/exp v0.0.0-20250408133849-7e4ce0ab07d0
golang.org/x/text v0.23.0
gopkg.in/yaml.v3 v3.0.1
)
require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/inconshreveable/mousetrap v1.1.0 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/spf13/pflag v1.0.6 // indirect
golang.org/x/mod v0.24.0 // indirect
golang.org/x/sys v0.26.0 // indirect
golang.org/x/tools/go/vcs v0.1.0-deprecated // indirect
)