-
Notifications
You must be signed in to change notification settings - Fork 18
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: Daniel Mikusa <[email protected]>
- Loading branch information
Showing
2 changed files
with
43 additions
and
14 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,36 +1,38 @@ | ||
module github.com/paketo-buildpacks/libpak/v2 | ||
|
||
go 1.20 | ||
go 1.22 | ||
|
||
toolchain go1.22.5 | ||
|
||
require ( | ||
dario.cat/mergo v1.0.0 | ||
github.com/BurntSushi/toml v1.3.2 | ||
github.com/BurntSushi/toml v1.4.0 | ||
github.com/Masterminds/semver/v3 v3.2.1 | ||
github.com/buildpacks/libcnb/v2 v2.0.0-alpha.1 | ||
github.com/creack/pty v1.1.18 | ||
github.com/buildpacks/libcnb/v2 v2.0.0-alpha.3 | ||
github.com/creack/pty v1.1.21 | ||
github.com/h2non/filetype v1.1.3 | ||
github.com/heroku/color v0.0.6 | ||
github.com/mitchellh/hashstructure/v2 v2.0.2 | ||
github.com/onsi/gomega v1.27.10 | ||
github.com/onsi/gomega v1.34.0 | ||
github.com/sclevine/spec v1.4.0 | ||
github.com/spf13/pflag v1.0.5 | ||
github.com/stretchr/testify v1.8.4 | ||
github.com/stretchr/testify v1.9.0 | ||
github.com/xi2/xz v0.0.0-20171230120015-48954b6210f8 | ||
) | ||
|
||
require ( | ||
github.com/Masterminds/semver v1.5.0 // indirect | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/golang/protobuf v1.5.3 // indirect | ||
github.com/google/go-cmp v0.5.9 // indirect | ||
github.com/golang/protobuf v1.5.4 // indirect | ||
github.com/google/go-cmp v0.6.0 // indirect | ||
github.com/kr/pretty v0.3.1 // indirect | ||
github.com/mattn/go-colorable v0.1.13 // indirect | ||
github.com/mattn/go-isatty v0.0.19 // indirect | ||
github.com/mattn/go-isatty v0.0.20 // indirect | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | ||
github.com/stretchr/objx v0.5.1 // indirect | ||
golang.org/x/net v0.14.0 // indirect | ||
golang.org/x/sys v0.11.0 // indirect | ||
golang.org/x/text v0.12.0 // indirect | ||
google.golang.org/protobuf v1.31.0 // indirect | ||
github.com/stretchr/objx v0.5.2 // indirect | ||
golang.org/x/net v0.27.0 // indirect | ||
golang.org/x/sys v0.22.0 // indirect | ||
golang.org/x/text v0.16.0 // indirect | ||
google.golang.org/protobuf v1.34.2 // indirect | ||
gopkg.in/yaml.v3 v3.0.1 // 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