Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[wip] use go modules #2493

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
579 changes: 0 additions & 579 deletions agent/Gopkg.lock

This file was deleted.

98 changes: 0 additions & 98 deletions agent/Gopkg.toml

This file was deleted.

53 changes: 53 additions & 0 deletions agent/go.mod
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
module github.com/aws/amazon-ecs-agent/agent

go 1.13

require (
github.com/Azure/go-ansiterm v0.0.0-20170929234023-d6e3b3328b78 // indirect
github.com/Microsoft/go-winio v0.4.7 // indirect
github.com/Nvveen/Gotty v0.0.0-20120604004816-cd527374f1e5 // indirect
github.com/aws/aws-sdk-go v1.27.0
github.com/awslabs/go-config-generator-for-fluentd-and-fluentbit v0.0.0-20190829210224-55d4fd2e6f35
github.com/beorn7/perks v0.0.0-20180321164747-3a771d992973 // indirect
github.com/cihub/seelog v0.0.0-20170130134532-f561c5e57575
github.com/containerd/cgroups v0.0.0-20170627184340-c3fc2b77b568
github.com/containerd/continuity v0.0.0-20181023183536-c220ac4f01b8 // indirect
github.com/containernetworking/cni v0.7.0
github.com/coreos/go-systemd v0.0.0-20170731111925-d21964639418 // indirect
github.com/deniswernert/udev v0.0.0-20140626150257-82fe5be8ca5f
github.com/didip/tollbooth v3.0.2+incompatible
github.com/docker/distribution v2.7.0-rc.0.0.20181002220433-1cb4180b1a5b+incompatible // indirect
github.com/docker/docker v17.12.0-ce-rc1.0.20181024032540-785fe99bdb7c+incompatible
github.com/docker/go-connections v0.3.0
github.com/docker/go-units v0.3.2
github.com/godbus/dbus v4.1.0+incompatible // indirect
github.com/gogo/protobuf v1.1.1 // indirect
github.com/golang/mock v1.3.1-0.20190508161146-9fa652df1129
github.com/google/go-cmp v0.5.0 // indirect
github.com/gorilla/context v1.1.1 // indirect
github.com/gorilla/mux v1.6.2
github.com/gorilla/websocket v1.2.0
github.com/konsorten/go-windows-terminal-sequences v1.0.1 // indirect
github.com/matttproud/golang_protobuf_extensions v1.0.1 // indirect
github.com/onsi/ginkgo v1.13.0 // indirect
github.com/opencontainers/go-digest v1.0.0-rc1 // indirect
github.com/opencontainers/image-spec v1.0.1 // indirect
github.com/opencontainers/runtime-spec v1.0.0-rc5.0.20170627113742-d349388c43b0
github.com/patrickmn/go-cache v2.1.0+incompatible // indirect
github.com/pborman/uuid v0.0.0-20150603214016-ca53cad383ca
github.com/pkg/errors v0.8.1-0.20170505043639-c605e284fe17
github.com/prometheus/client_golang v0.9.0
github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4
github.com/prometheus/common v0.0.0-20181020173914-7e9e6cabbd39 // indirect
github.com/prometheus/procfs v0.0.0-20181005140218-185b4288413d // indirect
github.com/sirupsen/logrus v1.1.1 // indirect
github.com/stretchr/testify v1.2.2
github.com/vishvananda/netlink v0.0.0-20170220200719-fe3b5664d23a
github.com/vishvananda/netns v0.0.0-20171111001504-be1fbeda1936 // indirect
golang.org/x/net v0.0.0-20200520004742-59133d7f0dd7
golang.org/x/sys v0.0.0-20200519105757-fe76b779f299
golang.org/x/time v0.0.0-20170927054726-6dc17368e09b // indirect
golang.org/x/tools v0.0.0-20190524140312-2c0ae7006135
google.golang.org/grpc v1.30.0 // indirect
gotest.tools v2.2.0+incompatible // indirect
)
Loading