go.mod
parent
7289d38459
commit
df68631aa3
11
go.mod
11
go.mod
|
@ -3,6 +3,7 @@ module github.com/vilmibm/hermeticum
|
|||
go 1.18
|
||||
|
||||
require (
|
||||
github.com/gdamore/tcell/v2 v2.4.1-0.20210905002822-f057f0a857a1
|
||||
github.com/jackc/pgx/v4 v4.16.1
|
||||
github.com/rivo/tview v0.0.0-20220703182358-a13d901d3386
|
||||
google.golang.org/grpc v1.47.0
|
||||
|
@ -11,9 +12,7 @@ require (
|
|||
|
||||
require (
|
||||
github.com/gdamore/encoding v1.0.0 // indirect
|
||||
github.com/gdamore/tcell/v2 v2.4.1-0.20210905002822-f057f0a857a1 // indirect
|
||||
github.com/golang/protobuf v1.5.2 // indirect
|
||||
github.com/google/uuid v1.3.0 // indirect
|
||||
github.com/jackc/chunkreader/v2 v2.0.1 // indirect
|
||||
github.com/jackc/pgconn v1.12.1 // indirect
|
||||
github.com/jackc/pgio v1.0.0 // indirect
|
||||
|
@ -24,9 +23,7 @@ require (
|
|||
github.com/jackc/puddle v1.2.1 // indirect
|
||||
github.com/lucasb-eyer/go-colorful v1.2.0 // indirect
|
||||
github.com/mattn/go-runewidth v0.0.13 // indirect
|
||||
github.com/pkg/errors v0.9.1 // indirect
|
||||
github.com/rivo/uniseg v0.2.0 // indirect
|
||||
github.com/yuin/gopher-lua v0.0.0-20221210110428-332342483e3f // indirect
|
||||
golang.org/x/crypto v0.0.0-20210711020723-a769d52b0f97 // indirect
|
||||
golang.org/x/net v0.0.0-20210226172049-e18ecbb05110 // indirect
|
||||
golang.org/x/sys v0.0.0-20210615035016-665e8c7367d1 // indirect
|
||||
|
@ -34,3 +31,9 @@ require (
|
|||
golang.org/x/text v0.3.7 // indirect
|
||||
google.golang.org/genproto v0.0.0-20200526211855-cb27e3aa2013 // indirect
|
||||
)
|
||||
|
||||
require (
|
||||
github.com/google/uuid v1.3.0
|
||||
github.com/pkg/errors v0.9.1 // indirect
|
||||
github.com/yuin/gopher-lua v0.0.0-20221210110428-332342483e3f
|
||||
)
|
||||
|
|
Loading…
Reference in New Issue