-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: fix go dependency conflicts (#234)
* chore: fix go dependency conflicts This commit pins some of the dependencies so that they will not cause conflicts when being imported by the `go-livepeer` package.
- Loading branch information
Showing
5 changed files
with
114 additions
and
120 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,44 +1,41 @@ | ||
module github.com/livepeer/ai-worker | ||
|
||
go 1.21.5 | ||
go 1.23.2 | ||
|
||
require ( | ||
github.com/deepmap/oapi-codegen/v2 v2.2.0 | ||
github.com/docker/cli v24.0.5+incompatible | ||
github.com/docker/docker v24.0.7+incompatible | ||
github.com/docker/go-connections v0.4.0 | ||
github.com/getkin/kin-openapi v0.124.0 | ||
github.com/go-chi/chi/v5 v5.0.12 | ||
github.com/docker/cli v24.0.9+incompatible | ||
github.com/docker/docker v24.0.9+incompatible | ||
github.com/docker/go-connections v0.5.0 | ||
github.com/getkin/kin-openapi v0.128.0 | ||
github.com/go-chi/chi/v5 v5.1.0 | ||
github.com/oapi-codegen/runtime v1.1.1 | ||
github.com/vincent-petithory/dataurl v1.0.0 | ||
) | ||
|
||
require ( | ||
github.com/Microsoft/go-winio v0.6.1 // indirect | ||
github.com/Microsoft/go-winio v0.4.14 // indirect | ||
github.com/apapsch/go-jsonmerge/v2 v2.0.0 // indirect | ||
github.com/distribution/reference v0.5.0 // indirect | ||
github.com/distribution/reference v0.6.0 // indirect | ||
github.com/docker/distribution v2.8.3+incompatible // indirect | ||
github.com/docker/go-units v0.4.0 // indirect | ||
github.com/go-openapi/jsonpointer v0.20.2 // indirect | ||
github.com/go-openapi/swag v0.22.8 // indirect | ||
github.com/docker/go-units v0.5.0 // indirect | ||
github.com/go-openapi/jsonpointer v0.21.0 // indirect | ||
github.com/go-openapi/swag v0.23.0 // indirect | ||
github.com/gogo/protobuf v1.3.2 // indirect | ||
github.com/google/uuid v1.5.0 // indirect | ||
github.com/invopop/yaml v0.2.0 // indirect | ||
github.com/google/go-cmp v0.6.0 // indirect | ||
github.com/google/uuid v1.6.0 // indirect | ||
github.com/invopop/yaml v0.3.1 // indirect | ||
github.com/josharian/intern v1.0.0 // indirect | ||
github.com/mailru/easyjson v0.7.7 // indirect | ||
github.com/moby/term v0.5.0 // indirect | ||
github.com/mohae/deepcopy v0.0.0-20170929034955-c48cc78d4826 // indirect | ||
github.com/morikuni/aec v1.0.0 // indirect | ||
github.com/opencontainers/go-digest v1.0.0 // indirect | ||
github.com/opencontainers/image-spec v1.0.2 // indirect | ||
github.com/opencontainers/image-spec v1.1.0 // indirect | ||
github.com/perimeterx/marshmallow v1.1.5 // indirect | ||
github.com/pkg/errors v0.9.1 // indirect | ||
github.com/pkg/errors v0.8.1 // indirect | ||
github.com/sirupsen/logrus v1.9.3 // indirect | ||
golang.org/x/mod v0.20.0 // indirect | ||
golang.org/x/net v0.28.0 // indirect | ||
golang.org/x/sync v0.8.0 // indirect | ||
golang.org/x/sys v0.23.0 // indirect | ||
golang.org/x/tools v0.24.0 // indirect | ||
golang.org/x/sys v0.26.0 // indirect | ||
gopkg.in/yaml.v3 v3.0.1 // indirect | ||
gotest.tools/v3 v3.5.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
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
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
Oops, something went wrong.