forked from eoscanada/eos-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
go.mod
39 lines (36 loc) · 1.5 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
module github.com/eoscanada/eos-go
go 1.22
require (
github.com/jarcoal/httpmock v1.3.1
github.com/streamingfast/cli v0.0.3
github.com/streamingfast/logging v0.0.0-20230608130331-f22c91403091
github.com/streamingfast/validator v0.0.0-20231124184318-71ec8080e4ae
github.com/stretchr/testify v1.9.0
github.com/thedevsaddam/govalidator v1.9.10
github.com/tidwall/gjson v1.17.3
go.uber.org/zap v1.27.0
golang.org/x/crypto v0.1.0
)
require (
github.com/blendle/zapdriver v1.3.1 // indirect
github.com/chzyer/readline v0.0.0-20180603132655-2972be24d48e // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/inconshreveable/mousetrap v1.0.0 // indirect
github.com/juju/ansiterm v0.0.0-20180109212912-720a0952cc2a // indirect
github.com/lithammer/dedent v1.1.0 // indirect
github.com/logrusorgru/aurora v2.0.3+incompatible // indirect
github.com/lunixbochs/vtclean v0.0.0-20180621232353-2d01aacdc34a // indirect
github.com/manifoldco/promptui v0.8.0 // indirect
github.com/mattn/go-colorable v0.0.9 // indirect
github.com/mattn/go-isatty v0.0.4 // indirect
github.com/mitchellh/go-testing-interface v1.14.1 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/spf13/cobra v1.1.3 // indirect
github.com/spf13/pflag v1.0.5 // indirect
github.com/tidwall/match v1.1.1 // indirect
github.com/tidwall/pretty v1.2.0 // indirect
go.uber.org/multierr v1.10.0 // indirect
golang.org/x/sys v0.1.0 // indirect
golang.org/x/term v0.1.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)