Gopkg.toml (966B)
1 2 # Gopkg.toml example 3 # 4 # Refer to https://github.com/golang/dep/blob/master/docs/Gopkg.toml.md 5 # for detailed Gopkg.toml documentation. 6 # 7 # required = ["github.com/user/thing/cmd/thing"] 8 # ignored = ["github.com/user/project/pkgX", "bitbucket.org/user/project/pkgA/pkgY"] 9 # 10 # [[constraint]] 11 # name = "github.com/user/project" 12 # version = "1.0.0" 13 # 14 # [[constraint]] 15 # name = "github.com/user/project2" 16 # branch = "dev" 17 # source = "github.com/myfork/project2" 18 # 19 # [[override]] 20 # name = "github.com/x/y" 21 # version = "2.4.0" 22 23 24 [[constraint]] 25 branch = "master" 26 name = "google.golang.org/api" 27 28 [[constraint]] 29 branch = "master" 30 name = "golang.org/x/oauth2" 31 32 [[constraint]] 33 name = "cloud.google.com/go" 34 version = "0.24.0" 35 36 [[constraint]] 37 name = "github.com/gorilla/mux" 38 version = "1.6.2" 39 40 [[constraint]] 41 name = "github.com/leboncoin/dialogflow-go-webhook" 42 version = "1.0.0" 43 44 [[constraint]] 45 branch = "master" 46 name = "golang.org/x/crypto"