-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
go.mod
26 lines (23 loc) · 854 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
module sentlog
go 1.20
require (
github.com/alecthomas/kingpin/v2 v2.3.2
github.com/araddon/dateparse v0.0.0-20210429162001-6b43995a97de
github.com/getsentry/sentry-go v0.20.0
github.com/hpcloud/tail v1.0.1-0.20180514194441-a1dbeea552b7
github.com/sirupsen/logrus v1.9.0
github.com/stretchr/testify v1.8.2
github.com/vjeantet/grok v1.0.1
gopkg.in/yaml.v3 v3.0.1
)
require (
github.com/alecthomas/units v0.0.0-20211218093645-b94a6e3cc137 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/fsnotify/fsnotify v1.6.0 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/xhit/go-str2duration/v2 v2.1.0 // indirect
golang.org/x/sys v0.6.0 // indirect
golang.org/x/text v0.8.0 // indirect
gopkg.in/fsnotify/fsnotify.v1 v1.4.7 // indirect
gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7 // indirect
)