- Upgraded to go 1.17 as 1.14 is not supported anymore. - Pinned the docker file to a hash https://github.com/ossf/scorecard/blob/main/docs/checks.md#pinned-dependencies Signed-off-by: naveensrinivasan <172697+naveensrinivasan@users.noreply.github.com>
19 lines
482 B
Modula-2
19 lines
482 B
Modula-2
module github.com/mempool/mempool-cli
|
|
|
|
go 1.17
|
|
|
|
require (
|
|
github.com/fatih/color v1.13.0
|
|
github.com/gorilla/websocket v1.5.0
|
|
github.com/jroimartin/gocui v0.5.0
|
|
github.com/mattn/go-colorable v0.1.12 // indirect
|
|
github.com/mattn/go-runewidth v0.0.13 // indirect
|
|
golang.org/x/sys v0.0.0-20220310020820-b874c991c1a5 // indirect
|
|
)
|
|
|
|
require (
|
|
github.com/mattn/go-isatty v0.0.14 // indirect
|
|
github.com/nsf/termbox-go v1.1.1 // indirect
|
|
github.com/rivo/uniseg v0.2.0 // indirect
|
|
)
|