go-mssqldb icon indicating copy to clipboard operation
go-mssqldb copied to clipboard

missing go.sum entry for module providing package golang.org/x/crypto/md4

Open cryptix opened this issue 4 years ago • 0 comments

Not sure if this is actually a bug with this module but I ran into this issue while adding embed.FS to sql-migrate, which imports this one.

sql-migrates test suite on travis involves go test ./... and then stumbles on go1.16 with the following error:

$ go test -v ./...
../../../../pkg/mod/github.com/denisenkom/[email protected]/ntlm.go:17:2: missing go.sum entry for module providing package golang.org/x/crypto/md4 (imported by github.com/denisenkom/go-mssqldb); to add:
	go get github.com/denisenkom/[email protected]
The command "go test -v ./..." exited with 1.

I did make this a other issue since I do see golang.org/x/crypto in the go.sum of that version. Anybody run into similar issues maybe or is able to shed some light what I'm missing?

cryptix avatar Feb 22 '21 13:02 cryptix