12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- # Gopkg.toml example
- #
- # Refer to https://golang.github.io/dep/docs/Gopkg.toml.html
- # for detailed Gopkg.toml documentation.
- #
- # required = ["github.com/user/thing/cmd/thing"]
- # ignored = ["github.com/user/project/pkgX", "bitbucket.org/user/project/pkgA/pkgY"]
- #
- # [[constraint]]
- # name = "github.com/user/project"
- # version = "1.0.0"
- #
- # [[constraint]]
- # name = "github.com/user/project2"
- # branch = "dev"
- # source = "github.com/myfork/project2"
- #
- # [[override]]
- # name = "github.com/x/y"
- # version = "2.4.0"
- #
- # [prune]
- # non-go = false
- # go-tests = true
- # unused-packages = true
- [[constraint]]
- name = "github.com/NYTimes/gziphandler"
- version = "1.0.1"
- [[constraint]]
- name = "github.com/gdamore/tcell"
- version = "1.1.0"
- [[constraint]]
- name = "github.com/go-errors/errors"
- version = "1.0.1"
- [[constraint]]
- name = "github.com/gorilla/websocket"
- version = "1.4.0"
- [[constraint]]
- name = "github.com/onsi/ginkgo"
- version = "1.6.0"
- [[constraint]]
- name = "github.com/onsi/gomega"
- version = "1.4.2"
- [[constraint]]
- branch = "master"
- name = "github.com/shibukawa/configdir"
- [[constraint]]
- name = "github.com/spf13/pflag"
- version = "1.0.3"
- [[constraint]]
- name = "github.com/spf13/viper"
- version = "1.2.1"
- [[constraint]]
- name = "github.com/ulule/limiter"
- version = "2.2.1"
- [[constraint]]
- branch = "master"
- name = "golang.org/x/sys"
- [[override]]
- source = "https://github.com/fsnotify/fsnotify/archive/v1.4.7.tar.gz"
- name = "gopkg.in/fsnotify.v1"
- [prune]
- go-tests = true
- unused-packages = true
|