mirror of
https://github.com/kemko/nomad.git
synced 2026-01-01 16:05:42 +03:00
The stdlib testing package now includes this interface, so we can remove our dependency on the external library.
23 lines
616 B
Modula-2
23 lines
616 B
Modula-2
module github.com/hashicorp/nomad/api
|
|
|
|
go 1.20
|
|
|
|
require (
|
|
github.com/docker/go-units v0.5.0
|
|
github.com/felixge/httpsnoop v1.0.4
|
|
github.com/gorilla/websocket v1.5.3
|
|
github.com/hashicorp/cronexpr v1.1.2
|
|
github.com/hashicorp/go-cleanhttp v0.5.2
|
|
github.com/hashicorp/go-multierror v1.1.1
|
|
github.com/hashicorp/go-rootcerts v1.0.2
|
|
github.com/mitchellh/mapstructure v1.5.0
|
|
github.com/shoenig/test v1.12.1
|
|
)
|
|
|
|
require (
|
|
github.com/google/go-cmp v0.6.0 // indirect
|
|
github.com/hashicorp/errwrap v1.0.0 // indirect
|
|
github.com/mitchellh/go-homedir v1.1.0 // indirect
|
|
github.com/stretchr/testify v1.8.1 // indirect
|
|
)
|