|
| 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 | +ignored = [ |
| 24 | + # Testing/Example/Codegen dependencies |
| 25 | + "github.com/stretchr/testify", |
| 26 | + "github.com/stretchr/testify/assert", |
| 27 | + "github.com/stretchr/testify/require", |
| 28 | + "github.com/go-sql-driver/mysql", |
| 29 | + "github.com/gucumber/gucumber", |
| 30 | + "github.com/pkg/errors", |
| 31 | + "golang.org/x/net", |
| 32 | + "golang.org/x/net/html", |
| 33 | + "golang.org/x/net/http2", |
| 34 | + "golang.org/x/text", |
| 35 | + "golang.org/x/text/html", |
| 36 | + "golang.org/x/tools", |
| 37 | + "golang.org/x/tools/go/loader", |
| 38 | +] |
| 39 | + |
| 40 | + |
| 41 | +[[constraint]] |
| 42 | + name = "github.com/go-ini/ini" |
| 43 | + version = "1.25.4" |
| 44 | + |
| 45 | +[[constraint]] |
| 46 | + name = "github.com/jmespath/go-jmespath" |
| 47 | + revision = "0b12d6b5" |
| 48 | + #version = "0.2.2" |
0 commit comments