-
Notifications
You must be signed in to change notification settings - Fork 55
/
Copy pathgo.mod
34 lines (31 loc) · 1.16 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
32
33
34
module github.com/vito/booklit
require (
github.com/agext/levenshtein v1.2.3
github.com/alecthomas/chroma v0.10.0
github.com/go-bindata/go-bindata v3.1.2+incompatible
github.com/jessevdk/go-flags v1.5.0
github.com/mna/pigeon v1.0.1-0.20200224192238-18953b277063
github.com/onsi/ginkgo/v2 v2.9.1
github.com/onsi/gomega v1.27.4
github.com/segmentio/textio v1.2.0
github.com/sirupsen/logrus v1.9.3
golang.org/x/text v0.14.0
)
require (
github.com/dlclark/regexp2 v1.9.0 // indirect
github.com/go-logr/logr v1.2.4 // indirect
github.com/go-task/slim-sprig v0.0.0-20210107165309-348f09dbbbc0 // indirect
github.com/google/go-cmp v0.5.9 // indirect
github.com/google/pprof v0.0.0-20230406165453-00490a63f317 // indirect
github.com/kr/pretty v0.3.0 // indirect
github.com/rogpeppe/go-internal v1.10.0 // indirect
github.com/stretchr/testify v1.8.4 // indirect
golang.org/x/mod v0.11.0 // indirect
golang.org/x/net v0.23.0 // indirect
golang.org/x/sys v0.18.0 // indirect
golang.org/x/tools v0.10.0 // indirect
google.golang.org/protobuf v1.33.0 // indirect
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)
go 1.18