|
1 | 1 | module github.com/prashanthpai/sqlcache |
2 | 2 |
|
3 | | -go 1.14 |
| 3 | +go 1.19 |
4 | 4 |
|
5 | 5 | require ( |
6 | | - github.com/DATA-DOG/go-sqlmock v1.4.1 |
7 | | - github.com/dgraph-io/ristretto v0.0.3 |
8 | | - github.com/go-redis/redis/v7 v7.4.0 |
9 | | - github.com/jackc/pgx/v4 v4.6.0 |
10 | | - github.com/mitchellh/hashstructure v1.0.0 |
11 | | - github.com/ngrok/sqlmw v0.0.0-20200129213757-d5c93a81bec6 |
12 | | - github.com/stretchr/testify v1.6.1 |
| 6 | + github.com/DATA-DOG/go-sqlmock v1.5.0 |
| 7 | + github.com/dgraph-io/ristretto v0.1.1 |
| 8 | + github.com/go-redis/redis/v8 v8.11.5 |
| 9 | + github.com/jackc/pgx/v4 v4.18.1 |
| 10 | + github.com/mitchellh/hashstructure/v2 v2.0.2 |
| 11 | + github.com/ngrok/sqlmw v0.0.0-20220520173518-97c9c04efc79 |
| 12 | + github.com/stretchr/testify v1.8.2 |
13 | 13 | github.com/vmihailenco/msgpack/v4 v4.3.12 |
14 | 14 | ) |
| 15 | + |
| 16 | +require ( |
| 17 | + github.com/cespare/xxhash/v2 v2.1.2 // indirect |
| 18 | + github.com/davecgh/go-spew v1.1.1 // indirect |
| 19 | + github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect |
| 20 | + github.com/dustin/go-humanize v1.0.0 // indirect |
| 21 | + github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b // indirect |
| 22 | + github.com/golang/protobuf v1.3.4 // indirect |
| 23 | + github.com/jackc/chunkreader/v2 v2.0.1 // indirect |
| 24 | + github.com/jackc/pgconn v1.14.0 // indirect |
| 25 | + github.com/jackc/pgio v1.0.0 // indirect |
| 26 | + github.com/jackc/pgpassfile v1.0.0 // indirect |
| 27 | + github.com/jackc/pgproto3/v2 v2.3.2 // indirect |
| 28 | + github.com/jackc/pgservicefile v0.0.0-20221227161230-091c0ba34f0a // indirect |
| 29 | + github.com/jackc/pgtype v1.14.0 // indirect |
| 30 | + github.com/pkg/errors v0.9.1 // indirect |
| 31 | + github.com/pmezard/go-difflib v1.0.0 // indirect |
| 32 | + github.com/stretchr/objx v0.5.0 // indirect |
| 33 | + github.com/vmihailenco/tagparser v0.1.1 // indirect |
| 34 | + golang.org/x/crypto v0.6.0 // indirect |
| 35 | + golang.org/x/net v0.6.0 // indirect |
| 36 | + golang.org/x/sys v0.5.0 // indirect |
| 37 | + golang.org/x/text v0.7.0 // indirect |
| 38 | + google.golang.org/appengine v1.6.5 // indirect |
| 39 | + gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15 // indirect |
| 40 | + gopkg.in/yaml.v3 v3.0.1 // indirect |
| 41 | +) |
0 commit comments