b693b000bc
Bumps [github.com/hashicorp/nomad](https://github.com/hashicorp/nomad) from 0.10.1 to 1.1.14. - [Release notes](https://github.com/hashicorp/nomad/releases) - [Changelog](https://github.com/hashicorp/nomad/blob/main/CHANGELOG.md) - [Commits](https://github.com/hashicorp/nomad/compare/v0.10.1...v1.1.14) --- updated-dependencies: - dependency-name: github.com/hashicorp/nomad dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
25 lines
1,018 B
Modula-2
25 lines
1,018 B
Modula-2
// TODO: update the module path below to match your own repository
|
|
module github.com/hashicorp/nomad-skeleton-driver-plugin
|
|
|
|
go 1.12
|
|
|
|
require (
|
|
github.com/containernetworking/plugins v0.8.3 // indirect
|
|
github.com/hashicorp/consul-template v0.25.2
|
|
github.com/hashicorp/go-hclog v0.14.1
|
|
github.com/hashicorp/go-plugin v1.4.0
|
|
github.com/hashicorp/nomad v1.1.14
|
|
github.com/shirou/gopsutil v2.19.11+incompatible // indirect
|
|
)
|
|
|
|
// use lower-case sirupsen
|
|
replace github.com/Sirupsen/logrus => github.com/sirupsen/logrus v1.4.2
|
|
|
|
// don't use shirou/gopsutil, use the hashicorp fork
|
|
replace github.com/shirou/gopsutil => github.com/hashicorp/gopsutil v2.17.13-0.20190117153606-62d5761ddb7d+incompatible
|
|
|
|
// don't use ugorji/go, use the hashicorp fork
|
|
replace github.com/ugorji/go => github.com/hashicorp/go-msgpack v0.0.0-20190927123313-23165f7bc3c2
|
|
|
|
// fix the version of hashicorp/go-msgpack to 96ddbed8d05b
|
|
replace github.com/hashicorp/go-msgpack => github.com/hashicorp/go-msgpack v0.0.0-20191101193846-96ddbed8d05b
|