-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgo.mod
More file actions
27 lines (23 loc) · 725 Bytes
/
go.mod
File metadata and controls
27 lines (23 loc) · 725 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
25
26
27
// FIXME: gomodjail support is currently broken
// gomodjail:confined
module github.com/AkihiroSuda/gosocialcheck
go 1.24.0
// My own packages and golang.org/x packages are trusted
//gosocialcheck:trusted
require (
github.com/AkihiroSuda/gomoddirectivecomments v0.1.0
golang.org/x/mod v0.33.0
golang.org/x/sync v0.19.0 // gomodjail:unconfined
golang.org/x/tools v0.41.0 // gomodjail:unconfined
)
require (
github.com/lmittmann/tint v1.1.3 // gomodjail:unconfined
github.com/spf13/cobra v1.10.2 // gomodjail:unconfined
github.com/spf13/pflag v1.0.10
gopkg.in/yaml.v3 v3.0.1
gotest.tools/v3 v3.5.2
)
require (
github.com/google/go-cmp v0.6.0 // indirect
github.com/inconshreveable/mousetrap v1.1.0 // indirect
)