emersion / go-msgauth

🔏 A Go library and tools for DKIM, DMARC and Authentication-Results
MIT License
162 stars 51 forks source link

Getting error on importing this project #28

Closed rishabh625 closed 4 years ago

rishabh625 commented 4 years ago

Error : module github.com/emersion/go-msgauth@latest found (v0.4.0), but does not contain package github.com/emersion/go-msgauth

As the code in master is not tagged

emersion commented 4 years ago

Not sure what this is about

rishabh625 commented 4 years ago

Code has been directly updated in master branch and not tagged, v 0,4.0 have 6 months old code , while there has been changes done in master branch .

emersion commented 4 years ago

Is this a request for a new release?

rishabh625 commented 4 years ago

1) Yes and Can u pls help me in using this as library my go.mod looks like this

go 1.14

require ( github.com/emersion/go-msgauth v0.4.0 github.com/go-kit/kit v0.10.0 github.com/golang/protobuf v1.4.1 github.com/prometheus/client_golang v1.3.0 github.com/sirupsen/logrus v1.6.0 golang.org/x/net v0.0.0-20200506145744-7e3656a0809f google.golang.org/grpc v1.29.1 google.golang.org/protobuf v1.22.0 )

on running go build this library is giving error Error : module github.com/emersion/go-msgauth@latest found (v0.4.0), but does not contain package github.com/emersion/go-msgauth

foxcpp commented 4 years ago

"github.com/emersion/go-msgauth" package does not exist, repository root has no Go files. You need to import "github.com/emersion/go-msgauth/dkim".

rishabh625 commented 4 years ago

Yeah got it Thanks