mirror of
https://github.com/eosswedenorg/thalos
synced 2026-06-16 04:24:56 +02:00
53 lines
2.2 KiB
Modula-2
53 lines
2.2 KiB
Modula-2
module eosio-ship-trace-reader
|
|
|
|
go 1.18
|
|
|
|
require (
|
|
github.com/alicebob/miniredis/v2 v2.30.0
|
|
github.com/eoscanada/eos-go v0.10.3-0.20221117104514-64cafd714c60
|
|
github.com/eosswedenorg-go/antelope-ship-client v0.2.2
|
|
github.com/eosswedenorg-go/pid v1.0.1
|
|
github.com/go-redis/cache/v8 v8.4.4
|
|
github.com/go-redis/redis/v8 v8.11.6-0.20220405070650-99c79f7041fc
|
|
github.com/go-redis/redismock/v8 v8.11.5
|
|
github.com/nikoksr/notify v0.35.0
|
|
github.com/pborman/getopt/v2 v2.1.0
|
|
github.com/sirupsen/logrus v1.9.0
|
|
github.com/stretchr/testify v1.8.1
|
|
)
|
|
|
|
require (
|
|
github.com/alicebob/gopher-json v0.0.0-20200520072559-a9ecdc9d1d3a // indirect
|
|
github.com/blendle/zapdriver v1.3.1 // indirect
|
|
github.com/cespare/xxhash/v2 v2.1.2 // indirect
|
|
github.com/davecgh/go-spew v1.1.1 // indirect
|
|
github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect
|
|
github.com/fsnotify/fsnotify v1.6.0 // indirect
|
|
github.com/go-telegram-bot-api/telegram-bot-api v4.6.4+incompatible // indirect
|
|
github.com/gorilla/websocket v1.5.0 // indirect
|
|
github.com/klauspost/compress v1.15.12 // indirect
|
|
github.com/logrusorgru/aurora v2.0.3+incompatible // indirect
|
|
github.com/mitchellh/go-testing-interface v1.14.1 // indirect
|
|
github.com/onsi/gomega v1.24.1 // indirect
|
|
github.com/pkg/errors v0.9.1 // indirect
|
|
github.com/pmezard/go-difflib v1.0.0 // indirect
|
|
github.com/streamingfast/logging v0.0.0-20220813175024-b4fbb0e893df // indirect
|
|
github.com/technoweenie/multipartstreamer v1.0.1 // indirect
|
|
github.com/tidwall/gjson v1.14.4 // indirect
|
|
github.com/tidwall/match v1.1.1 // indirect
|
|
github.com/tidwall/pretty v1.2.1 // indirect
|
|
github.com/vmihailenco/go-tinylfu v0.2.2 // indirect
|
|
github.com/vmihailenco/msgpack/v5 v5.3.5 // indirect
|
|
github.com/vmihailenco/tagparser/v2 v2.0.0 // indirect
|
|
github.com/yuin/gopher-lua v0.0.0-20220504180219-658193537a64 // indirect
|
|
go.uber.org/atomic v1.10.0 // indirect
|
|
go.uber.org/goleak v1.2.0 // indirect
|
|
go.uber.org/multierr v1.8.0 // indirect
|
|
go.uber.org/zap v1.23.0 // indirect
|
|
golang.org/x/crypto v0.3.0 // indirect
|
|
golang.org/x/sync v0.1.0 // indirect
|
|
golang.org/x/sys v0.2.0 // indirect
|
|
golang.org/x/term v0.2.0 // indirect
|
|
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
|
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
|
)
|