mirror of
https://github.com/kemko/nomad.git
synced 2026-01-07 10:55:42 +03:00
This PR switches the Nomad repository from using govendor to Go modules for managing dependencies. Aspects of the Nomad workflow remain pretty much the same. The usual Makefile targets should continue to work as they always did. The API submodule simply defers to the parent Nomad version on the repository, keeping the semantics of API versioning that currently exists.
26 lines
966 B
Modula-2
26 lines
966 B
Modula-2
module github.com/hashicorp/nomad/tools
|
|
|
|
go 1.14
|
|
|
|
require (
|
|
github.com/a8m/tree v0.0.0-20181222104329-6a0b80129de4
|
|
github.com/client9/misspell v0.3.4
|
|
github.com/elazarl/go-bindata-assetfs v1.0.0
|
|
github.com/golang/protobuf v1.3.4
|
|
github.com/golangci/golangci-lint v1.24.0
|
|
github.com/google/go-cmp v0.4.0 // indirect
|
|
github.com/hashicorp/go-bindata v3.0.7+incompatible
|
|
github.com/hashicorp/go-msgpack v1.1.5
|
|
github.com/hashicorp/hcl/v2 v2.5.1
|
|
github.com/jteeuwen/go-bindata v3.0.7+incompatible // indirect
|
|
github.com/kr/text v0.2.0 // indirect
|
|
github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e // indirect
|
|
github.com/onsi/ginkgo v1.12.0 // indirect
|
|
github.com/onsi/gomega v1.9.0 // indirect
|
|
github.com/stretchr/testify v1.5.1 // indirect
|
|
golang.org/x/tools v0.0.0-20200502202811-ed308ab3e770 // indirect
|
|
gopkg.in/check.v1 v1.0.0-20200227125254-8fa46927fb4f // indirect
|
|
gopkg.in/yaml.v2 v2.2.8 // indirect
|
|
gotest.tools/gotestsum v0.4.2
|
|
)
|