denisenkom / go-mssqldb

Microsoft SQL server driver written in go language
BSD 3-Clause "New" or "Revised" License
1.82k stars 497 forks source link

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

Open cryptix opened 3 years ago

cryptix commented 3 years ago

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/go-mssqldb@v0.9.0/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/go-mssqldb@v0.9.0
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?