jet/go.mod

23 lines
498 B
Modula-2
Raw Normal View History

2020-06-27 18:48:19 +02:00
module github.com/go-jet/jet/v2
go 1.11
require (
github.com/go-sql-driver/mysql v1.5.0
github.com/google/uuid v1.1.1
github.com/jackc/pgconn v1.12.0
github.com/lib/pq v1.10.5
github.com/mattn/go-sqlite3 v1.14.8
2022-05-13 14:49:11 +02:00
)
// test dependencies
require (
github.com/google/go-cmp v0.5.8
github.com/jackc/pgx/v4 v4.16.0
github.com/pkg/profile v1.6.0
github.com/shopspring/decimal v1.3.1
github.com/stretchr/testify v1.7.0
github.com/volatiletech/null/v8 v8.1.2
2022-12-17 17:21:46 +01:00
gopkg.in/guregu/null.v4 v4.0.0
2020-06-27 18:48:19 +02:00
)