33 lines
1.2 KiB
Modula-2
33 lines
1.2 KiB
Modula-2
|
module crowdsec-notification-telegram
|
||
|
|
||
|
go 1.17
|
||
|
|
||
|
require (
|
||
|
github.com/crowdsecurity/crowdsec v1.3.0
|
||
|
github.com/go-telegram-bot-api/telegram-bot-api/v5 v5.5.1
|
||
|
github.com/hashicorp/go-hclog v1.1.0
|
||
|
github.com/hashicorp/go-plugin v1.4.3
|
||
|
gopkg.in/yaml.v2 v2.4.0
|
||
|
)
|
||
|
|
||
|
require (
|
||
|
github.com/enescakir/emoji v1.0.0 // indirect
|
||
|
github.com/fatih/color v1.13.0 // indirect
|
||
|
github.com/golang/protobuf v1.5.2 // indirect
|
||
|
github.com/hashicorp/yamux v0.0.0-20180604194846-3520598351bb // indirect
|
||
|
github.com/kr/pretty v0.3.0 // indirect
|
||
|
github.com/mattn/go-colorable v0.1.9 // indirect
|
||
|
github.com/mattn/go-isatty v0.0.14 // indirect
|
||
|
github.com/mitchellh/go-testing-interface v1.0.0 // indirect
|
||
|
github.com/oklog/run v1.0.0 // indirect
|
||
|
github.com/rogpeppe/go-internal v1.8.0 // indirect
|
||
|
golang.org/x/net v0.0.0-20211209124913-491a49abca63 // indirect
|
||
|
golang.org/x/sys v0.0.0-20220114195835-da31bd327af9 // indirect
|
||
|
golang.org/x/text v0.3.7 // indirect
|
||
|
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect
|
||
|
google.golang.org/genproto v0.0.0-20210114201628-6edceaf6022f // indirect
|
||
|
google.golang.org/grpc v1.35.0 // indirect
|
||
|
google.golang.org/protobuf v1.27.1 // indirect
|
||
|
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
|
||
|
)
|