This repository has been archived on 2024-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
dagger/go.mod

151 lines
7.0 KiB
Modula-2
Raw Permalink Normal View History

module go.dagger.io/dagger
2022-10-26 19:27:34 +02:00
go 1.19
require (
2022-10-26 19:27:34 +02:00
cuelang.org/go v0.4.3
github.com/KromDaniel/jonson v0.0.0-20180630143114-d2f9c3c389db
2022-10-26 19:27:34 +02:00
github.com/Microsoft/go-winio v0.6.0
github.com/containerd/console v1.0.3
github.com/containerd/containerd v1.6.15
github.com/docker/buildx v0.10.0
github.com/docker/distribution v2.8.1+incompatible
2023-01-06 09:57:17 +01:00
github.com/go-git/go-git/v5 v5.5.2
Vendoring improved * update dagger init with package manager downloading stdlib Signed-off-by: Tihomir Jovicic <tihomir.jovicic.develop@gmail.com> * split mod get and update functions Signed-off-by: Tihomir Jovicic <tihomir.jovicic.develop@gmail.com> * write to package checksum to dagger.sum when installing/updating Signed-off-by: Tihomir Jovicic <tihomir.jovicic.develop@gmail.com> * encure checksums are valid when compiling input Signed-off-by: Tihomir Jovicic <tihomir.jovicic.develop@gmail.com> * remove references to github.com/tjovicic in docs 1010 and 1011 Signed-off-by: Tihomir Jovicic <tihomir.jovicic.develop@gmail.com> * refactor mod get command Signed-off-by: Tihomir Jovicic <tihomir.jovicic.develop@gmail.com> * update logic of moving dir when installing packages Signed-off-by: Tihomir Jovicic <tihomir.jovicic.develop@gmail.com> * fix linting errors Signed-off-by: Tihomir Jovicic <tihomir.jovicic.develop@gmail.com> * revert changes to 1010 docs Signed-off-by: Tihomir Jovicic <tihomir.jovicic.develop@gmail.com> * updating error log line in mod/get Signed-off-by: Tihomir Jovicic <tihomir.jovicic.develop@gmail.com> * fix ci tests when using vendoring Signed-off-by: Tihomir Jovicic <tihomir.jovicic.develop@gmail.com> * update alpha.dagger.io version to v0.1 Signed-off-by: Tihomir Jovicic <tihomir.jovicic.develop@gmail.com> * fix mod repo test Signed-off-by: Tihomir Jovicic <tihomir.jovicic.develop@gmail.com> * return error if package already installed Signed-off-by: Tihomir Jovicic <tihomir.jovicic.develop@gmail.com> * remove already installed packages when installing Signed-off-by: Tihomir Jovicic <tihomir.jovicic.develop@gmail.com> * fix issue when vendoring stdlib Signed-off-by: Tihomir Jovicic <tihomir.jovicic.develop@gmail.com> * update mod command with filelock while installing Signed-off-by: Tihomir Jovicic <tihomir.jovicic.develop@gmail.com> * fix linting errors Signed-off-by: Tihomir Jovicic <tihomir.jovicic.develop@gmail.com> * fix path of mod lock file Signed-off-by: Tihomir Jovicic <tihomir.jovicic.develop@gmail.com> Co-authored-by: Tihomir Jovicic <tihomir.jovicic.develop@gmail.com> Signed-off-by: Sam Alba <sam.alba@gmail.com>
2021-10-13 23:32:06 +02:00
github.com/gofrs/flock v0.8.1
github.com/google/uuid v1.3.0
2022-10-26 19:27:34 +02:00
github.com/hashicorp/go-version v1.6.0
github.com/mattn/go-colorable v0.1.13
github.com/mitchellh/colorstring v0.0.0-20190213212951-d06e56a500db
github.com/mitchellh/go-homedir v1.1.0
2023-01-09 23:22:58 +01:00
github.com/moby/buildkit v0.11.0
github.com/morikuni/aec v1.0.0
github.com/opencontainers/go-digest v1.0.0
2022-12-09 20:23:50 +01:00
github.com/opencontainers/image-spec v1.1.0-rc2.0.20221116213201-188d3a4e1942
2022-10-26 19:27:34 +02:00
github.com/rs/zerolog v1.28.0
github.com/sergi/go-diff v1.2.0
2022-10-26 19:27:34 +02:00
github.com/sirupsen/logrus v1.9.0
github.com/spf13/cobra v1.6.1
github.com/spf13/pflag v1.0.5
github.com/spf13/viper v1.14.0
github.com/stretchr/testify v1.8.2
2023-01-06 09:57:17 +01:00
github.com/tonistiigi/fsutil v0.0.0-20230105215944-fb433841cbfa
github.com/tonistiigi/units v0.0.0-20180711220420-6950e57a87ea
github.com/tonistiigi/vt100 v0.0.0-20210615222946-8066bb97264f
go.opentelemetry.io/otel v1.25.0
go.opentelemetry.io/otel/exporters/jaeger v1.6.3
go.opentelemetry.io/otel/sdk v1.25.0
go.opentelemetry.io/otel/trace v1.25.0
golang.org/x/mod v0.7.0
2022-10-26 19:27:34 +02:00
golang.org/x/sync v0.1.0
2023-01-04 17:00:19 +01:00
golang.org/x/term v0.4.0
2022-12-09 20:23:50 +01:00
golang.org/x/time v0.3.0
google.golang.org/grpc v1.51.0
gopkg.in/yaml.v3 v3.0.1
)
2022-10-26 19:27:34 +02:00
require (
2023-01-09 23:22:58 +01:00
github.com/Microsoft/hcsshim v0.9.6 // indirect
2022-12-09 20:23:50 +01:00
github.com/ProtonMail/go-crypto v0.0.0-20221026131551-cf6655e29de4 // indirect
2022-10-26 19:27:34 +02:00
github.com/Sirupsen/logrus v1.0.6 // indirect
github.com/acomagu/bufpipe v1.0.3 // indirect
github.com/agext/levenshtein v1.2.3 // indirect
github.com/aws/aws-sdk-go-v2 v1.16.3 // indirect
github.com/aws/aws-sdk-go-v2/config v1.15.5 // indirect
github.com/aws/aws-sdk-go-v2/credentials v1.12.0 // indirect
github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.12.4 // indirect
github.com/aws/aws-sdk-go-v2/internal/configsources v1.1.10 // indirect
github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.4.4 // indirect
github.com/aws/aws-sdk-go-v2/internal/ini v1.3.11 // indirect
github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.9.4 // indirect
github.com/aws/aws-sdk-go-v2/service/sso v1.11.4 // indirect
github.com/aws/aws-sdk-go-v2/service/sts v1.16.4 // indirect
github.com/aws/smithy-go v1.11.2 // indirect
2022-12-09 20:23:50 +01:00
github.com/cloudflare/circl v1.1.0 // indirect
2022-10-26 19:27:34 +02:00
github.com/cockroachdb/apd/v2 v2.0.1 // indirect
2023-01-09 23:22:58 +01:00
github.com/containerd/cgroups v1.0.4 // indirect
2022-10-26 19:27:34 +02:00
github.com/containerd/continuity v0.3.0 // indirect
2023-01-09 23:22:58 +01:00
github.com/containerd/fifo v1.0.0 // indirect
github.com/containerd/nydus-snapshotter v0.3.1 // indirect
github.com/containerd/stargz-snapshotter/estargz v0.13.0 // indirect
2022-10-26 19:27:34 +02:00
github.com/containerd/ttrpc v1.1.0 // indirect
github.com/containerd/typeurl v1.0.2 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
2023-01-09 23:22:58 +01:00
github.com/docker/cli v23.0.0-rc.1+incompatible // indirect
github.com/docker/docker v23.0.0-rc.1+incompatible // indirect
2022-10-26 19:27:34 +02:00
github.com/docker/go-connections v0.4.0 // indirect
2023-01-09 23:22:58 +01:00
github.com/docker/go-units v0.5.0 // indirect
2022-10-26 19:27:34 +02:00
github.com/docker/libnetwork v0.5.6 // indirect
github.com/emicklei/proto v1.9.0 // indirect
2022-12-09 20:23:50 +01:00
github.com/emirpasic/gods v1.18.1 // indirect
2023-01-09 23:22:58 +01:00
github.com/felixge/httpsnoop v1.0.2 // indirect
github.com/fsnotify/fsnotify v1.6.0 // indirect
2022-10-26 19:27:34 +02:00
github.com/go-git/gcfg v1.5.0 // indirect
2023-01-06 09:57:17 +01:00
github.com/go-git/go-billy/v5 v5.4.0 // indirect
github.com/go-logr/logr v1.2.4 // indirect
2022-10-26 19:27:34 +02:00
github.com/go-logr/stdr v1.2.2 // indirect
github.com/gogo/googleapis v1.4.1 // indirect
github.com/gogo/protobuf v1.3.2 // indirect
github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b // indirect
2023-01-09 23:22:58 +01:00
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
2022-10-26 19:27:34 +02:00
github.com/golang/protobuf v1.5.2 // indirect
github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510 // indirect
github.com/grpc-ecosystem/go-grpc-middleware v1.3.0 // indirect
github.com/grpc-ecosystem/grpc-gateway v1.16.0 // indirect
github.com/hashicorp/hcl v1.0.0 // indirect
github.com/imdario/mergo v0.3.13 // indirect
2023-01-09 23:22:58 +01:00
github.com/in-toto/in-toto-golang v0.5.0 // indirect
2022-10-26 19:27:34 +02:00
github.com/inconshreveable/mousetrap v1.0.1 // indirect
github.com/jbenet/go-context v0.0.0-20150711004518-d14ea06fba99 // indirect
2022-12-09 20:23:50 +01:00
github.com/kevinburke/ssh_config v1.2.0 // indirect
2023-01-09 23:22:58 +01:00
github.com/klauspost/compress v1.15.12 // indirect
2022-10-26 19:27:34 +02:00
github.com/lib/pq v1.10.0 // indirect
github.com/magiconair/properties v1.8.6 // indirect
github.com/mattn/go-isatty v0.0.16 // indirect
github.com/mitchellh/mapstructure v1.5.0 // indirect
github.com/moby/locker v1.0.1 // indirect
github.com/moby/patternmatcher v0.5.0 // indirect
2023-01-09 23:22:58 +01:00
github.com/moby/sys/signal v0.7.0 // indirect
2022-10-26 19:27:34 +02:00
github.com/mpvl/unique v0.0.0-20150818121801-cbe035fff7de // indirect
github.com/pelletier/go-toml v1.9.5 // indirect
github.com/pelletier/go-toml/v2 v2.0.5 // indirect
github.com/pjbgf/sha1cd v0.2.3 // indirect
2022-10-26 19:27:34 +02:00
github.com/pkg/errors v0.9.1 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/protocolbuffers/txtpbfmt v0.0.0-20201118171849-f6a6b3f636fc // indirect
2023-01-09 23:22:58 +01:00
github.com/secure-systems-lab/go-securesystemslib v0.4.0 // indirect
github.com/shibumi/go-pathspec v1.3.0 // indirect
2022-12-09 20:23:50 +01:00
github.com/skeema/knownhosts v1.1.0 // indirect
github.com/spf13/afero v1.9.2 // indirect
2022-10-26 19:27:34 +02:00
github.com/spf13/cast v1.5.0 // indirect
github.com/spf13/jwalterweatherman v1.1.0 // indirect
github.com/subosito/gotenv v1.4.1 // indirect
2023-01-09 23:22:58 +01:00
github.com/vbatts/tar-split v0.11.2 // indirect
2022-10-26 19:27:34 +02:00
github.com/vishvananda/netlink v1.1.1-0.20210330154013-f5de75959ad5 // indirect
github.com/vishvananda/netns v0.0.0-20210104183010-2eb08e3e575f // indirect
github.com/xanzy/ssh-agent v0.3.3 // indirect
2023-01-09 23:22:58 +01:00
go.opencensus.io v0.23.0 // indirect
2022-10-26 19:27:34 +02:00
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.29.0 // indirect
2023-01-09 23:22:58 +01:00
go.opentelemetry.io/contrib/instrumentation/net/http/httptrace/otelhttptrace v0.29.0 // indirect
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.29.0 // indirect
2022-10-26 19:27:34 +02:00
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.4.1 // indirect
2023-01-09 23:22:58 +01:00
go.opentelemetry.io/otel/internal/metric v0.27.0 // indirect
go.opentelemetry.io/otel/metric v0.27.0 // indirect
2022-10-26 19:27:34 +02:00
go.opentelemetry.io/proto/otlp v0.12.0 // indirect
2022-12-09 20:23:50 +01:00
golang.org/x/crypto v0.3.0 // indirect
2023-01-09 23:22:58 +01:00
golang.org/x/net v0.4.0 // indirect
golang.org/x/sys v0.7.0 // indirect
2023-01-09 23:22:58 +01:00
golang.org/x/text v0.5.0 // indirect
2022-10-26 19:27:34 +02:00
golang.org/x/tools v0.1.12 // indirect
golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2 // indirect
google.golang.org/genproto v0.0.0-20221024183307-1bc688fe9f3e // indirect
google.golang.org/protobuf v1.28.1 // indirect
2022-10-26 19:27:34 +02:00
gopkg.in/ini.v1 v1.67.0 // indirect
gopkg.in/warnings.v0 v0.1.2 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
)
replace (
cuelang.org/go => github.com/dagger/cue v0.4.1-rc.1.0.20220121023213-66df011a52c2
2022-12-18 12:07:19 +01:00
github.com/docker/docker => github.com/docker/docker v20.10.22+incompatible
)