forked from heroku/docker-registry-client
-
Notifications
You must be signed in to change notification settings - Fork 2
/
go.mod
21 lines (18 loc) · 832 Bytes
/
go.mod
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
module github.com/heroku/docker-registry-client
go 1.12
require (
github.com/docker/distribution v0.0.0-20171011171712-7484e51bf6af
github.com/docker/libtrust v0.0.0-20160708172513-aabc10ec26b7 // indirect
github.com/golangci/golangci-lint v1.17.2-0.20190909185456-6163a8a79084
github.com/gorilla/mux v1.7.3 // indirect
github.com/opencontainers/go-digest v1.0.0-rc1
github.com/sirupsen/logrus v1.4.2 // indirect
github.com/stretchr/testify v1.4.0 // indirect
)
// From/For golangci-lint. Can be removed once v1.17.2 (or newer) is released
replace (
// https://github.com/ultraware/funlen/pull/1
github.com/ultraware/funlen => github.com/golangci/funlen v0.0.0-20190909161642-5e59b9546114
// https://github.com/golang/tools/pull/139
golang.org/x/tools => github.com/golangci/tools v0.0.0-20190909104219-979bdb7f8cc8
)