gofeed icon indicating copy to clipboard operation
gofeed copied to clipboard

Dependency update needed

Open mdosch opened this issue 6 years ago • 1 comments

You are importing github.com/codegangsta/cli which is now forwarding to github.com/urfave/cli. This makes go get -u all fail for me: go: github.com/codegangsta/[email protected]: parsing go.mod: unexpected module path "github.com/urfave/cli"

You should replace github.com/codegangsta/cli with github.com/urfave/cli.

mdosch avatar Sep 20 '19 15:09 mdosch

Also, consider removing your test binaries dependencies from your go.mod file by making cmd/ftest its own module or by renaming cmd/ to _examples/ or .examples which I believe are ignored by go modules.

SamWhited avatar Sep 20 '19 15:09 SamWhited