|
1 | 1 | module github.com/umbracle/ethgo |
2 | 2 |
|
3 | | -go 1.12 |
| 3 | +go 1.18 |
4 | 4 |
|
5 | 5 | require ( |
6 | | - github.com/Azure/go-ansiterm v0.0.0-20170929234023-d6e3b3328b78 // indirect |
7 | | - github.com/Microsoft/go-winio v0.4.13 // indirect |
8 | | - github.com/Nvveen/Gotty v0.0.0-20120604004816-cd527374f1e5 // indirect |
9 | 6 | github.com/boltdb/bolt v1.3.1 |
10 | 7 | github.com/btcsuite/btcd v0.21.0-beta |
11 | 8 | github.com/btcsuite/btcutil v1.0.2 |
| 9 | + github.com/gorilla/websocket v1.4.1 |
| 10 | + github.com/jmoiron/sqlx v1.2.0 |
| 11 | + github.com/lib/pq v1.2.0 |
| 12 | + github.com/mitchellh/mapstructure v1.1.2 |
| 13 | + github.com/ory/dockertest v3.3.5+incompatible |
| 14 | + github.com/stretchr/testify v1.4.0 |
| 15 | + github.com/tyler-smith/go-bip39 v1.1.0 |
| 16 | + github.com/umbracle/fastrlp v0.0.0-20211229195328-c1416904ae17 |
| 17 | + github.com/valyala/fasthttp v1.4.0 |
| 18 | + github.com/valyala/fastjson v1.4.1 |
| 19 | + golang.org/x/crypto v0.0.0-20201221181555-eec23a3978ad |
| 20 | + golang.org/x/text v0.3.2 |
| 21 | +) |
| 22 | + |
| 23 | +require ( |
| 24 | + github.com/Azure/go-ansiterm v0.0.0-20170929234023-d6e3b3328b78 // indirect |
| 25 | + github.com/Microsoft/go-winio v0.4.13 // indirect |
| 26 | + github.com/Nvveen/Gotty v0.0.0-20120604004816-cd527374f1e5 // indirect |
12 | 27 | github.com/cenkalti/backoff v2.2.1+incompatible // indirect |
13 | 28 | github.com/containerd/continuity v0.0.0-20191214063359-1097c8bae83b // indirect |
| 29 | + github.com/davecgh/go-spew v1.1.1 // indirect |
14 | 30 | github.com/docker/go-connections v0.4.0 // indirect |
15 | 31 | github.com/docker/go-units v0.4.0 // indirect |
16 | 32 | github.com/go-sql-driver/mysql v1.4.1 // indirect |
17 | 33 | github.com/google/go-cmp v0.3.1 // indirect |
18 | | - github.com/gorilla/websocket v1.4.1 |
| 34 | + github.com/google/gofuzz v1.2.0 // indirect |
19 | 35 | github.com/gotestyourself/gotestyourself v2.2.0+incompatible // indirect |
20 | | - github.com/jmoiron/sqlx v1.2.0 |
21 | 36 | github.com/klauspost/compress v1.4.1 // indirect |
22 | 37 | github.com/klauspost/cpuid v1.2.0 // indirect |
| 38 | + github.com/konsorten/go-windows-terminal-sequences v1.0.1 // indirect |
23 | 39 | github.com/kr/pretty v0.1.0 // indirect |
24 | | - github.com/lib/pq v1.2.0 |
25 | | - github.com/mitchellh/mapstructure v1.1.2 |
| 40 | + github.com/opencontainers/go-digest v1.0.0-rc1 // indirect |
26 | 41 | github.com/opencontainers/image-spec v1.0.1 // indirect |
27 | 42 | github.com/opencontainers/runc v0.1.1 // indirect |
28 | | - github.com/ory/dockertest v3.3.5+incompatible |
| 43 | + github.com/pkg/errors v0.8.1 // indirect |
| 44 | + github.com/pmezard/go-difflib v1.0.0 // indirect |
29 | 45 | github.com/sirupsen/logrus v1.4.2 // indirect |
30 | | - github.com/stretchr/testify v1.4.0 |
31 | | - github.com/tyler-smith/go-bip39 v1.1.0 |
32 | | - github.com/umbracle/fastrlp v0.0.0-20211229195328-c1416904ae17 |
33 | | - github.com/valyala/fasthttp v1.4.0 |
34 | | - github.com/valyala/fastjson v1.4.1 |
35 | | - golang.org/x/crypto v0.0.0-20201221181555-eec23a3978ad |
| 46 | + github.com/valyala/bytebufferpool v1.0.0 // indirect |
36 | 47 | golang.org/x/net v0.0.0-20190813141303-74dc4d7220e7 // indirect |
37 | | - golang.org/x/text v0.3.2 |
| 48 | + golang.org/x/sys v0.0.0-20191026070338-33540a1f6037 // indirect |
38 | 49 | google.golang.org/appengine v1.6.5 // indirect |
39 | 50 | gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127 // indirect |
| 51 | + gopkg.in/yaml.v2 v2.2.2 // indirect |
40 | 52 | gotest.tools v2.2.0+incompatible // indirect |
41 | 53 | ) |
0 commit comments