jet/go.mod

24 lines
525 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 (
2023-01-17 18:50:09 +01:00
github.com/go-sql-driver/mysql v1.7.0
github.com/google/uuid v1.3.0
github.com/jackc/pgconn v1.14.1
github.com/lib/pq v1.10.8
github.com/mattn/go-sqlite3 v1.14.17
2022-05-13 14:49:11 +02:00
)
// test dependencies
require (
github.com/google/go-cmp v0.5.9
2023-04-06 11:26:09 +02:00
github.com/jackc/pgx/v4 v4.18.1
github.com/pkg/profile v1.7.0
2022-05-13 14:49:11 +02:00
github.com/shopspring/decimal v1.3.1
2023-04-06 11:26:09 +02:00
github.com/stretchr/testify v1.8.2
github.com/volatiletech/null/v8 v8.1.2
2023-09-19 20:56:54 +03:00
golang.org/x/sync v0.3.0
2022-12-17 17:21:46 +01:00
gopkg.in/guregu/null.v4 v4.0.0
2020-06-27 18:48:19 +02:00
)