-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Josh W Lewis <[email protected]>
- Loading branch information
1 parent
312e074
commit 4780747
Showing
2 changed files
with
29 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,41 @@ | ||
// +heroku goVersion go1.15 | ||
// +heroku goVersion go1.23 | ||
|
||
module github.com/buildpacks/registry-api | ||
|
||
go 1.15 | ||
go 1.23 | ||
|
||
require ( | ||
github.com/Microsoft/hcsshim v0.8.11 // indirect | ||
github.com/containerd/continuity v0.0.0-20201208142359-180525291bb7 // indirect | ||
github.com/golang-migrate/migrate/v4 v4.14.1 | ||
github.com/google/go-containerregistry v0.2.1 | ||
github.com/lib/pq v1.8.0 | ||
github.com/onsi/gomega v1.9.0 | ||
github.com/opencontainers/runc v1.1.5 // indirect | ||
github.com/sclevine/spec v1.2.0 | ||
github.com/stretchr/testify v1.5.1 | ||
) | ||
|
||
require ( | ||
github.com/Microsoft/go-winio v0.4.16-0.20201130162521-d1ffc52c7331 // indirect | ||
github.com/Microsoft/hcsshim v0.8.11 // indirect | ||
github.com/containerd/continuity v0.0.0-20201208142359-180525291bb7 // indirect | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/docker/cli v0.0.0-20191017083524-a8ff7f821017 // indirect | ||
github.com/docker/distribution v2.7.1+incompatible // indirect | ||
github.com/docker/docker v17.12.0-ce-rc1.0.20200618181300-9dc6525e6118+incompatible // indirect | ||
github.com/docker/docker-credential-helpers v0.6.3 // indirect | ||
github.com/docker/go-units v0.4.0 // indirect | ||
github.com/hashicorp/errwrap v1.0.0 // indirect | ||
github.com/hashicorp/go-multierror v1.1.0 // indirect | ||
github.com/opencontainers/go-digest v1.0.0 // indirect | ||
github.com/opencontainers/image-spec v1.0.1 // indirect | ||
github.com/opencontainers/runc v1.1.5 // indirect | ||
github.com/pkg/errors v0.9.1 // indirect | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | ||
github.com/sirupsen/logrus v1.8.1 // indirect | ||
github.com/stretchr/objx v0.2.0 // indirect | ||
golang.org/x/net v0.0.0-20201224014010-6772e930b67b // indirect | ||
golang.org/x/sync v0.0.0-20200625203802-6e8e738ad208 // indirect | ||
golang.org/x/sys v0.0.0-20211116061358-0a5406a5449c // indirect | ||
golang.org/x/text v0.3.3 // indirect | ||
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect | ||
gopkg.in/yaml.v2 v2.3.0 // indirect | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters