mirror of https://github.com/knative/func.git
50 lines
1.9 KiB
Modula-2
50 lines
1.9 KiB
Modula-2
module knative.dev/kn-plugin-func
|
|
|
|
go 1.16
|
|
|
|
require (
|
|
github.com/AlecAivazis/survey/v2 v2.2.14
|
|
github.com/Masterminds/semver v1.5.0
|
|
github.com/Netflix/go-expect v0.0.0-20210722184520-ef0bf57d82b3
|
|
github.com/alecthomas/jsonschema v0.0.0-20210526225647-edb03dcab7bc
|
|
github.com/buildpacks/pack v0.22.0
|
|
github.com/cloudevents/sdk-go/v2 v2.5.0
|
|
github.com/containers/image/v5 v5.10.6
|
|
github.com/coreos/go-semver v0.3.0
|
|
github.com/docker/cli v20.10.10+incompatible
|
|
github.com/docker/docker v20.10.10+incompatible
|
|
github.com/docker/docker-credential-helpers v0.6.4
|
|
github.com/docker/go-connections v0.4.0
|
|
github.com/go-git/go-billy/v5 v5.3.1
|
|
github.com/go-git/go-git/v5 v5.4.2
|
|
github.com/google/go-cmp v0.5.6
|
|
github.com/google/go-containerregistry v0.6.0
|
|
github.com/google/uuid v1.3.0
|
|
github.com/hinshun/vt10x v0.0.0-20180809195222-d55458df857c
|
|
github.com/mitchellh/go-homedir v1.1.0
|
|
github.com/opencontainers/image-spec v1.0.3-0.20211202222133-eacdcc10569b
|
|
github.com/ory/viper v1.7.5
|
|
github.com/pkg/errors v0.9.1
|
|
github.com/spf13/cobra v1.2.1
|
|
github.com/tektoncd/cli v0.22.0
|
|
github.com/tektoncd/pipeline v0.32.1
|
|
github.com/whilp/git-urls v1.0.0
|
|
golang.org/x/crypto v0.0.0-20210921155107-089bfa567519
|
|
golang.org/x/term v0.0.0-20210615171337-6886f2dfbf5b
|
|
gopkg.in/natefinch/npipe.v2 v2.0.0-20160621034901-c1b8fa8bdcce
|
|
gopkg.in/yaml.v2 v2.4.0
|
|
k8s.io/api v0.22.5
|
|
k8s.io/apimachinery v0.22.5
|
|
k8s.io/client-go v0.22.5
|
|
k8s.io/utils v0.0.0-20210819203725-bdf08cb9a70a
|
|
knative.dev/client v0.27.0
|
|
knative.dev/eventing v0.27.2
|
|
knative.dev/hack v0.0.0-20220216040439-0456e8bf6547
|
|
knative.dev/pkg v0.0.0-20220215153400-3c00bb0157b9
|
|
knative.dev/serving v0.27.1
|
|
)
|
|
|
|
// temporary set higher version of buildpacks/imgutil to get better performance for podman
|
|
// rever this once there will be buildpacks/pack with newer version
|
|
replace github.com/buildpacks/imgutil => github.com/buildpacks/imgutil v0.0.0-20211001201950-cf7ae41c3771
|