File tree Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -27,9 +27,9 @@ import (
2727 "github.com/compose-spec/compose-go/errdefs"
2828 "github.com/compose-spec/compose-go/loader"
2929 "github.com/compose-spec/compose-go/types"
30+ "github.com/compose-spec/godotenv"
3031 "github.com/pkg/errors"
3132 "github.com/sirupsen/logrus"
32- "github.com/ulyssessouza/godotenv"
3333)
3434
3535// ProjectOptions groups the command line options recommended for a Compose implementation
Original file line number Diff line number Diff line change @@ -3,6 +3,7 @@ module github.com/compose-spec/compose-go
33go 1.16
44
55require (
6+ github.com/compose-spec/godotenv v1.0.0
67 github.com/distribution/distribution/v3 v3.0.0-20210316161203-a01c71e2477e
78 github.com/docker/go-connections v0.4.0
89 github.com/docker/go-units v0.4.0
@@ -13,7 +14,6 @@ require (
1314 github.com/opencontainers/go-digest v1.0.0
1415 github.com/pkg/errors v0.9.1
1516 github.com/sirupsen/logrus v1.8.1
16- github.com/ulyssessouza/godotenv v1.3.1-0.20210806120901-e417b721114e
1717 github.com/xeipuuv/gojsonschema v1.2.0
1818 golang.org/x/sync v0.0.0-20210220032951-036812b2e83c
1919 golang.org/x/sys v0.0.0-20200323222414-85ca7c5b95cd // indirect
Original file line number Diff line number Diff line change @@ -14,6 +14,8 @@ github.com/bshuster-repo/logrus-logstash-hook v1.0.0/go.mod h1:zsTqEiSzDgAa/8GZR
1414github.com/bugsnag/bugsnag-go v0.0.0-20141110184014-b1d153021fcd /go.mod h1:2oa8nejYd4cQ/b0hMIopN0lCRxU0bueqREvZLWFrtK8 =
1515github.com/bugsnag/osext v0.0.0-20130617224835-0dd3f918b21b /go.mod h1:obH5gd0BsqsP2LwDJ9aOkm/6J86V6lyAXCoQWGw3K50 =
1616github.com/bugsnag/panicwrap v0.0.0-20151223152923-e2c28503fcd0 /go.mod h1:D/8v3kj0zr8ZAKg1AQ6crr+5VwKN5eIywRkfhyM/+dE =
17+ github.com/compose-spec/godotenv v1.0.0 h1:TV24JYhh5GCC1G14npQVhCtxeoiwd0NcT0VdwcCQyXU =
18+ github.com/compose-spec/godotenv v1.0.0 /go.mod h1:zF/3BOa18Z24tts5qnO/E9YURQanJTBUf7nlcCTNsyc =
1719github.com/davecgh/go-spew v1.1.0 /go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38 =
1820github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c =
1921github.com/davecgh/go-spew v1.1.1 /go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38 =
@@ -106,8 +108,6 @@ github.com/stretchr/testify v1.2.2/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXf
106108github.com/stretchr/testify v1.3.0 /go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UVUgZn+9EI =
107109github.com/stretchr/testify v1.5.1 h1:nOGnQDM7FYENwehXlg/kFVnos3rEvtKTjRvOWSzb6H4 =
108110github.com/stretchr/testify v1.5.1 /go.mod h1:5W2xD1RspED5o8YsWQXVCued0rvSQ+mT+I5cxcmMvtA =
109- github.com/ulyssessouza/godotenv v1.3.1-0.20210806120901-e417b721114e h1:byEYm3QADv5mDUesYKstWwRodf2RoxxC/YuGOxtdqJw =
110- github.com/ulyssessouza/godotenv v1.3.1-0.20210806120901-e417b721114e /go.mod h1:9JN/BuU6Agy5aHyEoA5EIPkBsYbk0+2R42zJgYi/SlI =
111111github.com/xeipuuv/gojsonpointer v0.0.0-20180127040702-4e3ac2762d5f h1:J9EGpcZtP0E/raorCMxlFGSTBrsSlaDGf3jU/qvAE2c =
112112github.com/xeipuuv/gojsonpointer v0.0.0-20180127040702-4e3ac2762d5f /go.mod h1:N2zxlSyiKSe5eX1tZViRH5QA0qijqEDrYZiPEAiq3wU =
113113github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415 h1:EzJWgHovont7NscjpAxXsDA8S8BMYve8Y5+7cuRE7R0 =
Original file line number Diff line number Diff line change @@ -31,12 +31,12 @@ import (
3131 "github.com/compose-spec/compose-go/schema"
3232 "github.com/compose-spec/compose-go/template"
3333 "github.com/compose-spec/compose-go/types"
34+ "github.com/compose-spec/godotenv"
3435 "github.com/docker/go-units"
3536 "github.com/mattn/go-shellwords"
3637 "github.com/mitchellh/mapstructure"
3738 "github.com/pkg/errors"
3839 "github.com/sirupsen/logrus"
39- "github.com/ulyssessouza/godotenv"
4040 "gopkg.in/yaml.v2"
4141)
4242
You can’t perform that action at this time.
0 commit comments