Skip to content

Commit 87d94d5

Browse files
committed
go.mod
1 parent 9b8d047 commit 87d94d5

File tree

4 files changed

+16
-20
lines changed

4 files changed

+16
-20
lines changed

cmd/sqldb-dump/go.mod

+3-4
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,9 @@ go 1.22
44

55
replace github.com/domonda/go-sqldb => ../..
66

7-
require (
8-
github.com/domonda/go-pretty v0.0.0-20240110134850-17385799142f
9-
github.com/domonda/go-sqldb v0.0.0-20240122205319-56db59ae89d2
10-
)
7+
require github.com/domonda/go-sqldb v0.0.0-00010101000000-000000000000 // replaced
8+
9+
require github.com/domonda/go-pretty v0.0.0-20240110134850-17385799142f
1110

1211
require (
1312
github.com/domonda/go-errs v0.0.0-20240301142737-8fde935c9bd4 // indirect

examples/user_demo/go.mod

+5-6
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,11 @@ module github.com/domonda/go-sqldb/examples/user_demo
22

33
go 1.22
44

5-
require (
6-
github.com/domonda/go-sqldb v0.0.0-20240122205319-56db59ae89d2
7-
github.com/domonda/go-types v0.0.0-20240301143218-7f4371e713b4
8-
)
5+
replace github.com/domonda/go-sqldb => ../..
6+
7+
require github.com/domonda/go-sqldb v0.0.0-00010101000000-000000000000 // replaced
8+
9+
require github.com/domonda/go-types v0.0.0-20240301143218-7f4371e713b4
910

1011
require (
1112
github.com/cention-sany/utf7 v0.0.0-20170124080048-26cad61bd60a // indirect
@@ -28,5 +29,3 @@ require (
2829
golang.org/x/text v0.14.0 // indirect
2930
mvdan.cc/xurls/v2 v2.5.0 // indirect
3031
)
31-
32-
replace github.com/domonda/go-sqldb => ../..

mssqlconn/go.mod

+4-5
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,11 @@ module github.com/domonda/go-sqldb/mssqlconn
22

33
go 1.22.0
44

5-
replace github.com/domonda/go-sqldb => ../
5+
replace github.com/domonda/go-sqldb => ..
66

7-
require (
8-
github.com/domonda/go-sqldb v0.0.0-20240122205319-56db59ae89d2
9-
github.com/microsoft/go-mssqldb v1.7.0
10-
)
7+
require github.com/domonda/go-sqldb v0.0.0-00010101000000-000000000000 // replaced
8+
9+
require github.com/microsoft/go-mssqldb v1.7.0
1110

1211
require (
1312
github.com/domonda/go-types v0.0.0-20240301143218-7f4371e713b4 // indirect

mysqlconn/go.mod

+4-5
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,11 @@ module github.com/domonda/go-sqldb/mysqlconn
22

33
go 1.22.0
44

5-
replace github.com/domonda/go-sqldb => ../
5+
replace github.com/domonda/go-sqldb => ..
66

7-
require (
8-
github.com/domonda/go-sqldb v0.0.0-20240122205319-56db59ae89d2
9-
github.com/go-sql-driver/mysql v1.7.1
10-
)
7+
require github.com/domonda/go-sqldb v0.0.0-00010101000000-000000000000 // replaced
8+
9+
require github.com/go-sql-driver/mysql v1.7.1
1110

1211
require (
1312
github.com/domonda/go-types v0.0.0-20240301143218-7f4371e713b4 // indirect

0 commit comments

Comments
 (0)