forked from cloudfoundry/bosh-agent
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- go mod did not like counterfeiter, we removed it as it is a dev dependency only - added tools import for ginkgo, as this is the new way of vendoring ginkgo [#177060090] Signed-off-by: Joseph Palermo <[email protected]>
- Loading branch information
1 parent
360e5c9
commit f8971fa
Showing
348 changed files
with
10,296 additions
and
57,467 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
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 |
---|---|---|
@@ -0,0 +1,53 @@ | ||
module github.com/cloudfoundry/bosh-agent | ||
|
||
go 1.15 | ||
|
||
require ( | ||
code.cloudfoundry.org/clock v1.0.0 | ||
code.cloudfoundry.org/tlsconfig v0.0.0-20200131000646-bbe0f8da39b3 | ||
github.com/Azure/go-ntlmssp v0.0.0-20200615164410-66371956d46c // indirect | ||
github.com/ChrisTrenkamp/goxpath v0.0.0-20190607011252-c5096ec8773d // indirect | ||
github.com/Microsoft/go-winio v0.4.16 // indirect | ||
github.com/Microsoft/hcsshim v0.8.14 | ||
github.com/bmatcuk/doublestar v1.3.4 // indirect | ||
github.com/charlievieth/fs v0.0.1 | ||
github.com/cloudfoundry/bosh-davcli v0.0.44 | ||
github.com/cloudfoundry/bosh-init v0.0.103 | ||
github.com/cloudfoundry/bosh-utils v0.0.0-20210213100152-d3ba248ff042 | ||
github.com/cloudfoundry/go-socks5 v0.0.0-20180221174514-54f73bdb8a8e // indirect | ||
github.com/cloudfoundry/gosigar v1.1.0 | ||
github.com/cloudfoundry/socks5-proxy v0.2.0 // indirect | ||
github.com/cloudfoundry/yagnats v0.0.0-20191003180638-5cab3e099974 | ||
github.com/containerd/cgroups v0.0.0-20210114181951-8a68de567b68 // indirect | ||
github.com/gofrs/uuid v4.0.0+incompatible | ||
github.com/gogo/protobuf v1.3.2 // indirect | ||
github.com/golang/mock v1.5.0 | ||
github.com/google/uuid v1.2.0 | ||
github.com/jpillora/backoff v0.0.0-20170918002102-8eab2debe79d // indirect | ||
github.com/kevinburke/ssh_config v0.0.0-20190724205821-6cfae18c12b8 | ||
github.com/magefile/mage v1.11.0 // indirect | ||
github.com/masterzen/simplexml v0.0.0-20190410153822-31eea3082786 // indirect | ||
github.com/masterzen/winrm v0.0.0-20201030141608-56ca5c5f2380 | ||
github.com/mitchellh/mapstructure v1.4.1 | ||
github.com/nats-io/jwt v1.2.2 // indirect | ||
github.com/nats-io/nats.go v1.10.0 | ||
github.com/nu7hatch/gouuid v0.0.0-20131221200532-179d4d0c4d8d // indirect | ||
github.com/nxadm/tail v1.4.8 // indirect | ||
github.com/onsi/ginkgo v1.15.0 | ||
github.com/onsi/gomega v1.10.5 | ||
github.com/pivotal-cf/paraphernalia v0.0.0-20180203224945-a64ae2051c20 // indirect | ||
github.com/pivotal/go-smtpd v0.0.0-20140108210614-0af6982457e5 | ||
github.com/pkg/errors v0.9.1 | ||
github.com/sirupsen/logrus v1.8.0 // indirect | ||
github.com/stretchr/testify v1.7.0 | ||
github.com/tedsuo/ifrit v0.0.0-20191009134036-9a97d0632f00 // indirect | ||
go.opencensus.io v0.22.6 // indirect | ||
golang.org/x/crypto v0.0.0-20210220033148-5ea612d1eb83 | ||
golang.org/x/lint v0.0.0-20201208152925-83fdc39ff7b5 // indirect | ||
golang.org/x/net v0.0.0-20210220033124-5f55cee0dc0d | ||
golang.org/x/sys v0.0.0-20210220050731-9a76102bfb43 | ||
golang.org/x/text v0.3.5 // indirect | ||
golang.org/x/tools v0.1.0 // indirect | ||
gopkg.in/yaml.v2 v2.4.0 // indirect | ||
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect | ||
) |
Oops, something went wrong.