-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathgo.mod
34 lines (30 loc) · 1.11 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
module github.com/emacsway/grade
go 1.20
require (
github.com/google/uuid v1.3.0
github.com/hashicorp/go-multierror v1.1.1
github.com/jackc/pgx/v4 v4.17.0
github.com/oklog/ulid/v2 v2.1.0
github.com/pkg/errors v0.8.1
github.com/stretchr/testify v1.8.4
)
require github.com/corpix/uarand v0.0.0-20170723150923-031be390f409 // indirect
require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/hashicorp/errwrap v1.0.0 // indirect
github.com/icrowley/fake v0.0.0-20221112152111-d7b7e2276db2
github.com/jackc/chunkreader/v2 v2.0.1 // indirect
github.com/jackc/pgconn v1.13.0 // indirect
github.com/jackc/pgio v1.0.0 // indirect
github.com/jackc/pgpassfile v1.0.0 // indirect
github.com/jackc/pgproto3/v2 v2.3.1 // indirect
github.com/jackc/pgservicefile v0.0.0-20221227161230-091c0ba34f0a // indirect
github.com/jackc/pgtype v1.12.0 // indirect
github.com/jackc/pgx/v5 v5.3.1
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/sergi/go-diff v1.3.1
golang.org/x/crypto v0.6.0 // indirect
golang.org/x/text v0.7.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
syreclabs.com/go/faker v1.2.3
)