-
Notifications
You must be signed in to change notification settings - Fork 23
/
go.mod
31 lines (28 loc) · 1.08 KB
/
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
31
module github.com/palantir/log4j-sniffer
go 1.23.0
require (
github.com/fatih/color v1.13.0
github.com/ncw/directio v1.0.5
github.com/palantir/godel/v2 v2.124.0
github.com/palantir/pkg/cobracli v1.2.0
github.com/pkg/errors v0.9.1
github.com/spf13/cobra v1.8.1
github.com/stretchr/testify v1.10.0
github.com/zxh0/jvm.go v0.0.0-20191204141628-129b147ebcc8
go.uber.org/ratelimit v0.2.0
)
require (
github.com/andres-erbsen/clock v0.0.0-20160526145045-9e14626cd129 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/inconshreveable/mousetrap v1.1.0 // indirect
github.com/mattn/go-colorable v0.1.12 // indirect
github.com/mattn/go-isatty v0.0.14 // indirect
github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e // indirect
github.com/nmiyake/pkg/errorstringer v1.1.0 // indirect
github.com/palantir/pkg v1.1.0 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/spf13/pflag v1.0.5 // indirect
golang.org/x/sys v0.28.0 // indirect
gopkg.in/check.v1 v1.0.0-20200227125254-8fa46927fb4f // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)