-
-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathgo.mod
58 lines (55 loc) · 2.54 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
module github.com/k1LoW/tcpdp
go 1.22.1
require (
code.cloudfoundry.org/bytefmt v0.0.0-20190710193110-1eb035ffe2b6
github.com/bLamarche413/mysql v1.0.3
github.com/google/gopacket v1.1.17
github.com/hnakamur/zap-ltsv v0.0.0-20170731143423-10a3dd1d839c
github.com/lestrrat-go/file-rotatelogs v2.2.1-0.20180926095352-d72d6cf46fc8+incompatible
github.com/lestrrat-go/server-starter v0.0.0-20181210024821-8564cc80d990
github.com/pkg/errors v0.9.1
github.com/rs/xid v1.2.1
github.com/spf13/cobra v1.1.1
github.com/spf13/viper v1.7.0
github.com/xo/dburl v0.0.0-20190203050942-98997a05b24f
go.uber.org/zap v1.13.0
golang.org/x/text v0.3.8
)
require (
github.com/BurntSushi/toml v0.3.1 // indirect
github.com/fastly/go-utils v0.0.0-20180712184237-d95a45783239 // indirect
github.com/fsnotify/fsnotify v1.4.9 // indirect
github.com/gopherjs/gopherjs v0.0.0-20200217142428-fce0ec30dd00 // indirect
github.com/hashicorp/hcl v1.0.0 // indirect
github.com/inconshreveable/mousetrap v1.0.0 // indirect
github.com/jehiah/go-strftime v0.0.0-20171201141054-1d33003b3869 // indirect
github.com/jonboulle/clockwork v0.2.0 // indirect
github.com/kr/text v0.2.0 // indirect
github.com/lestrrat-go/envload v0.0.0-20180220234015-a3eb8ddeffcc // indirect
github.com/lestrrat-go/strftime v0.0.0-20180821113735-8b31f9c59b0f // indirect
github.com/magiconair/properties v1.8.1 // indirect
github.com/mitchellh/mapstructure v1.4.0 // indirect
github.com/onsi/ginkgo v1.16.4 // indirect
github.com/onsi/gomega v1.13.0 // indirect
github.com/pelletier/go-toml v1.4.0 // indirect
github.com/smartystreets/assertions v1.0.1 // indirect
github.com/spf13/afero v1.5.1 // indirect
github.com/spf13/cast v1.3.0 // indirect
github.com/spf13/jwalterweatherman v1.1.0 // indirect
github.com/spf13/pflag v1.0.5 // indirect
github.com/stretchr/testify v1.7.0 // indirect
github.com/subosito/gotenv v1.2.0 // indirect
github.com/tebeka/strftime v0.0.0-20140926081919-3f9c7761e312 // indirect
go.uber.org/atomic v1.5.0 // indirect
go.uber.org/multierr v1.4.0 // indirect
go.uber.org/tools v0.0.0-20190618225709-2cfd321de3ee // indirect
golang.org/x/lint v0.0.0-20210508222113-6edffad5e616 // indirect
golang.org/x/mod v0.6.0-dev.0.20220419223038-86c51ed26bb4 // indirect
golang.org/x/sys v0.0.0-20220722155257-8c9f86f7a55f // indirect
golang.org/x/tools v0.1.12 // indirect
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
gopkg.in/ini.v1 v1.51.0 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
gopkg.in/yaml.v3 v3.0.0 // indirect
honnef.co/go/tools v0.0.1-2020.1.4 // indirect
)