-
-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathgo.mod
More file actions
29 lines (25 loc) · 527 Bytes
/
go.mod
File metadata and controls
29 lines (25 loc) · 527 Bytes
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
module github.com/bxcodec/dbresolver/v2
go 1.22
require (
github.com/DATA-DOG/go-sqlmock v1.5.2
github.com/google/gofuzz v1.2.0
github.com/lib/pq v1.10.9
go.uber.org/multierr v1.11.0
)
require github.com/stretchr/testify v1.8.1 // indirect
retract (
// below versions doesn't support Update,Insert queries with "RETURNING CLAUSE"
// v1.0.0
// v1.0.0-beta
// v1.0.1
// v1.0.2
// v1.1.0
v2.0.0
v2.0.0-beta.2
v2.0.0-beta
v2.0.0-alpha.5
v2.0.0-alpha.4
v2.0.0-alpha.3
v2.0.0-alpha.2
v2.0.0-alpha
)