-
Notifications
You must be signed in to change notification settings - Fork 0
/
go.mod
30 lines (26 loc) · 820 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/mandelsoft/logging
go 1.21
require (
github.com/go-logr/logr v1.2.3
github.com/onsi/ginkgo/v2 v2.2.0
github.com/onsi/gomega v1.20.2
// github.com/petermattis/goid v0.0.0-20230317030725-371a4b8eda08
github.com/sirupsen/logrus v1.9.0
github.com/tonglil/buflogr v1.0.1
sigs.k8s.io/yaml v1.3.0
)
require (
github.com/mattn/go-isatty v0.0.19
github.com/modern-go/reflect2 v1.0.2
github.com/valyala/fasttemplate v1.2.2
)
require (
github.com/google/go-cmp v0.5.8 // indirect
github.com/stretchr/testify v1.7.1 // indirect
github.com/valyala/bytebufferpool v1.0.0 // indirect
golang.org/x/net v0.0.0-20220722155237-a158d28d115b // indirect
golang.org/x/sys v0.6.0 // indirect
golang.org/x/text v0.3.7 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)