forked from cgrindel/rules_swift_package_manager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
go.mod
30 lines (25 loc) · 922 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.22.0
toolchain go1.23.3
// Workaround for inconsistent Go versions being used in rules_bazel_integration_test tests.
// toolchain go1.21.5
require (
github.com/bazelbuild/bazel-gazelle v0.40.0
github.com/bazelbuild/buildtools v0.0.0-20240918101019-be1c24cc9a44
github.com/creasty/defaults v1.8.0
github.com/deckarep/golang-set/v2 v2.6.0
github.com/spf13/cobra v1.8.1
github.com/stretchr/testify v1.9.0
golang.org/x/exp v0.0.0-20241108190413-2d47ceb2692f
golang.org/x/text v0.20.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.5 // indirect
golang.org/x/mod v0.22.0 // indirect
golang.org/x/sys v0.26.0 // indirect
golang.org/x/tools/go/vcs v0.1.0-deprecated // indirect
)