-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathgo.mod
More file actions
21 lines (18 loc) · 677 Bytes
/
go.mod
File metadata and controls
21 lines (18 loc) · 677 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
module github.com/hlubek/metaprogramming-go
go 1.17
require (
github.com/Masterminds/squirrel v1.5.2
github.com/dave/jennifer v1.5.0
github.com/fergusstrange/embedded-postgres v1.15.0
github.com/gofrs/uuid v4.2.0+incompatible
github.com/lib/pq v1.10.4
golang.org/x/tools v0.1.9
)
require (
github.com/lann/builder v0.0.0-20180802200727-47ae307949d0 // indirect
github.com/lann/ps v0.0.0-20150810152359-62de8c46ede0 // indirect
github.com/xi2/xz v0.0.0-20171230120015-48954b6210f8 // indirect
golang.org/x/mod v0.5.1 // indirect
golang.org/x/sys v0.0.0-20220307203707-22a9840ba4d7 // indirect
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect
)