File tree 4 files changed +5
-5
lines changed
4 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -27,9 +27,9 @@ import (
27
27
"github.com/compose-spec/compose-go/errdefs"
28
28
"github.com/compose-spec/compose-go/loader"
29
29
"github.com/compose-spec/compose-go/types"
30
+ "github.com/compose-spec/godotenv"
30
31
"github.com/pkg/errors"
31
32
"github.com/sirupsen/logrus"
32
- "github.com/ulyssessouza/godotenv"
33
33
)
34
34
35
35
// 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
3
3
go 1.16
4
4
5
5
require (
6
+ github.com/compose-spec/godotenv v1.0.0
6
7
github.com/distribution/distribution/v3 v3.0.0-20210316161203-a01c71e2477e
7
8
github.com/docker/go-connections v0.4.0
8
9
github.com/docker/go-units v0.4.0
@@ -13,7 +14,6 @@ require (
13
14
github.com/opencontainers/go-digest v1.0.0
14
15
github.com/pkg/errors v0.9.1
15
16
github.com/sirupsen/logrus v1.8.1
16
- github.com/ulyssessouza/godotenv v1.3.1-0.20210806120901-e417b721114e
17
17
github.com/xeipuuv/gojsonschema v1.2.0
18
18
golang.org/x/sync v0.0.0-20210220032951-036812b2e83c
19
19
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
14
14
github.com/bugsnag/bugsnag-go v0.0.0-20141110184014-b1d153021fcd /go.mod h1:2oa8nejYd4cQ/b0hMIopN0lCRxU0bueqREvZLWFrtK8 =
15
15
github.com/bugsnag/osext v0.0.0-20130617224835-0dd3f918b21b /go.mod h1:obH5gd0BsqsP2LwDJ9aOkm/6J86V6lyAXCoQWGw3K50 =
16
16
github.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 =
17
19
github.com/davecgh/go-spew v1.1.0 /go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38 =
18
20
github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c =
19
21
github.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
106
108
github.com/stretchr/testify v1.3.0 /go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UVUgZn+9EI =
107
109
github.com/stretchr/testify v1.5.1 h1:nOGnQDM7FYENwehXlg/kFVnos3rEvtKTjRvOWSzb6H4 =
108
110
github.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 =
111
111
github.com/xeipuuv/gojsonpointer v0.0.0-20180127040702-4e3ac2762d5f h1:J9EGpcZtP0E/raorCMxlFGSTBrsSlaDGf3jU/qvAE2c =
112
112
github.com/xeipuuv/gojsonpointer v0.0.0-20180127040702-4e3ac2762d5f /go.mod h1:N2zxlSyiKSe5eX1tZViRH5QA0qijqEDrYZiPEAiq3wU =
113
113
github.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 (
31
31
"github.com/compose-spec/compose-go/schema"
32
32
"github.com/compose-spec/compose-go/template"
33
33
"github.com/compose-spec/compose-go/types"
34
+ "github.com/compose-spec/godotenv"
34
35
"github.com/docker/go-units"
35
36
"github.com/mattn/go-shellwords"
36
37
"github.com/mitchellh/mapstructure"
37
38
"github.com/pkg/errors"
38
39
"github.com/sirupsen/logrus"
39
- "github.com/ulyssessouza/godotenv"
40
40
"gopkg.in/yaml.v2"
41
41
)
42
42
You can’t perform that action at this time.
0 commit comments