1
0
mirror of https://github.com/gdamore/tcell.git synced 2025-04-24 13:48:51 +08:00
tcell/go.mod
Graham Clark 8925703e9e An attempt to work around a gopkg.in/module error in a dependency.
Specifically:

gcla@elgin:~/source/gowid$ go get -u -v github.com/gdamore/tcell
Fetching https://golang.org/x/text?go-get=1
Fetching https://gopkg.in/DATA-DOG/go-sqlmock.v1?go-get=1
Parsing meta tags from https://golang.org/x/text?go-get=1 (status code 200)
get "golang.org/x/text": found meta tag get.metaImport{Prefix:"golang.org/x/text", VCS:"git", RepoRoot:"https://go.googlesource.com/text"} at https://golang.org/x/text?go-get=1
Parsing meta tags from https://gopkg.in/DATA-DOG/go-sqlmock.v1?go-get=1 (status code 200)
get "gopkg.in/DATA-DOG/go-sqlmock.v1": found meta tag get.metaImport{Prefix:"gopkg.in/DATA-DOG/go-sqlmock.v1", VCS:"git", RepoRoot:"https://gopkg.in/DATA-DOG/go-sqlmock.v1"} at https://gopkg.in/DATA-DOG/go-sqlmock.v1?go-get=1
go: finding github.com/lucasb-eyer/go-colorful latest
go: gopkg.in/DATA-DOG/go-sqlmock.v1@v1.3.3: go.mod has non-....v1 module path "github.com/DATA-DOG/go-sqlmock" at revision v1.3.3
go get: error loading module requirements
2019-04-07 19:20:36 -07:00

12 lines
275 B
Modula-2

module github.com/gdamore/tcell
go 1.9
require (
github.com/DATA-DOG/go-sqlmock v1.3.3 // indirect
github.com/gdamore/encoding v1.0.0
github.com/lucasb-eyer/go-colorful v0.0.0-20190323151624-4de7d682992e
github.com/mattn/go-runewidth v0.0.4
golang.org/x/text v0.3.0
)