goat
goat copied to clipboard
A simple, yaml-based go dependency manager
Started a new Go project, and want to use Gin web framework. So I added a dependency to my .go.yaml file for `github.com/gin-gonic/gin`. I get an error when running `goat...
Just learned about canonical import paths for Go 1.4. See [here](https://golang.org/doc/go1.4#canonicalimports) and [here](https://docs.google.com/document/d/1jVFkZTcYbNLaTxXD9OcGfn7vYv5hWtPx9--lTx1gPMs/edit) But I haven't gotten my head around it quite yet. I am wondering how this effects goat.
Consider this case: You depend on package X and you have fixed it at version A. Package X depends on package Y, and you don't care about the version of...