2020-02-13 02:07:05 +00:00
|
|
|
// TODO: update the module path below to match your own repository
|
2019-12-03 17:12:54 +00:00
|
|
|
module github.com/hashicorp/nomad-skeleton-driver-plugin
|
2019-11-29 23:58:03 +00:00
|
|
|
|
|
|
|
go 1.12
|
2019-09-30 15:26:20 +00:00
|
|
|
|
|
|
|
require (
|
2019-12-03 17:12:54 +00:00
|
|
|
github.com/containernetworking/plugins v0.8.3 // indirect
|
2022-06-06 19:54:30 +00:00
|
|
|
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
|
2019-12-03 17:12:54 +00:00
|
|
|
github.com/shirou/gopsutil v2.19.11+incompatible // indirect
|
2019-09-30 15:26:20 +00:00
|
|
|
)
|
2019-11-29 23:58:03 +00:00
|
|
|
|
2019-12-03 17:12:54 +00:00
|
|
|
// use lower-case sirupsen
|
|
|
|
replace github.com/Sirupsen/logrus => github.com/sirupsen/logrus v1.4.2
|
|
|
|
|
2019-11-29 23:58:03 +00:00
|
|
|
// don't use shirou/gopsutil, use the hashicorp fork
|
2020-02-12 19:03:07 +00:00
|
|
|
replace github.com/shirou/gopsutil => github.com/hashicorp/gopsutil v2.17.13-0.20190117153606-62d5761ddb7d+incompatible
|
2019-11-29 23:58:03 +00:00
|
|
|
|
|
|
|
// don't use ugorji/go, use the hashicorp fork
|
2020-02-12 19:03:07 +00:00
|
|
|
replace github.com/ugorji/go => github.com/hashicorp/go-msgpack v0.0.0-20190927123313-23165f7bc3c2
|
2019-11-29 23:58:03 +00:00
|
|
|
|
|
|
|
// 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
|