-
Notifications
You must be signed in to change notification settings - Fork 107
/
go.mod
29 lines (26 loc) · 1003 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
module github.com/driskell/log-courier
go 1.18
require (
github.com/bmatcuk/doublestar/v4 v4.6.0
github.com/gizak/termui/v3 v3.1.0
github.com/google/cel-go v0.13.0
github.com/hashicorp/golang-lru v0.5.4
github.com/oschwald/geoip2-golang v1.8.0
github.com/ua-parser/uap-go v0.0.0-20211112212520-00c877edfe0f
google.golang.org/genproto v0.0.0-20230306152656-daab25adc199
gopkg.in/op/go-logging.v1 v1.0.0-20160211212156-b2cb9fa56473
gopkg.in/tylerb/graceful.v1 v1.2.15
gopkg.in/yaml.v2 v2.4.0
)
require (
github.com/antlr/antlr4/runtime/Go/antlr v1.4.10 // indirect
github.com/mattn/go-runewidth v0.0.14 // indirect
github.com/mitchellh/go-wordwrap v1.0.1 // indirect
github.com/nsf/termbox-go v1.1.1 // indirect
github.com/oschwald/maxminddb-golang v1.10.0 // indirect
github.com/rivo/uniseg v0.4.4 // indirect
github.com/stoewer/go-strcase v1.2.1 // indirect
golang.org/x/sys v0.6.0 // indirect
golang.org/x/text v0.8.0 // indirect
google.golang.org/protobuf v1.33.0 // indirect
)