Skip to content

Commit

Permalink
Fixes to go.mod
Browse files Browse the repository at this point in the history
  • Loading branch information
thebsdbox committed Nov 18, 2019
1 parent fa1b5a9 commit 835f8c5
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 273 deletions.
52 changes: 13 additions & 39 deletions go.mod
Expand Up @@ -3,63 +3,37 @@ module github.com/plunder-app/plunder
go 1.12

require (
cloud.google.com/go v0.44.3 // indirect
github.com/AlecAivazis/survey/v2 v2.0.2 // indirect
github.com/c4milo/gotoolkit v0.0.0-20190525173301-67483a18c17a // indirect
github.com/coreos/bbolt v1.3.3 // indirect
github.com/coreos/etcd v3.3.15+incompatible // indirect
github.com/coreos/go-semver v0.3.0 // indirect
github.com/coreos/go-systemd v0.0.0-20190719114852-fd7a80b32e1f // indirect
github.com/ghodss/yaml v1.0.0
github.com/go-kit/kit v0.9.0 // indirect
github.com/golang/groupcache v0.0.0-20190702054246-869f871628b6 // indirect
github.com/google/go-cmp v0.3.1 // indirect
github.com/google/pprof v0.0.0-20190723021845-34ac40c74b70 // indirect
github.com/gorilla/mux v1.7.3 // indirect
github.com/grpc-ecosystem/grpc-gateway v1.9.6 // indirect
github.com/hashicorp/golang-lru v0.5.3 // indirect
github.com/hooklift/assert v0.0.0-20170704181755-9d1defd6d214 // indirect
github.com/hooklift/iso9660 v1.0.0 // indirect
github.com/kisielk/errcheck v1.2.0 // indirect
github.com/konsorten/go-windows-terminal-sequences v1.0.2 // indirect
github.com/kr/fs v0.1.0 // indirect
github.com/kr/pretty v0.1.0 // indirect
github.com/kr/pty v1.1.8 // indirect
github.com/krolaw/dhcp4 v0.0.0-20190531080455-7b64900047ae // indirect
github.com/magiconair/properties v1.8.1 // indirect
github.com/mitchellh/go-homedir v1.1.0
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
github.com/modern-go/reflect2 v1.0.1 // indirect
github.com/mwitkow/go-conntrack v0.0.0-20190716064945-2f068394615f // indirect
github.com/pelletier/go-toml v1.4.0 // indirect
github.com/pkg/errors v0.8.1 // indirect
github.com/pkg/sftp v1.10.0
github.com/pkg/sftp v1.10.1 // indirect
github.com/plunder-app/plunder/pkg/apiserver v0.0.0-20191105152536-b5c505aaf830
github.com/plunder-app/plunder/pkg/certs v0.0.0-00010101000000-000000000000
github.com/plunder-app/plunder/pkg/parlay v0.0.0-20191105152536-b5c505aaf830
github.com/plunder-app/plunder/pkg/parlay/parlaytypes v0.0.0-20191105152536-b5c505aaf830
github.com/plunder-app/plunder/pkg/plunderlogging v0.0.0-20191105152536-b5c505aaf830 // indirect
github.com/plunder-app/plunder/pkg/services v0.0.0-20191105152536-b5c505aaf830
github.com/plunder-app/plunder/pkg/ssh v0.0.0-00010101000000-000000000000
github.com/plunder-app/plunder/pkg/utils v0.0.0-20191105152536-b5c505aaf830
github.com/prometheus/client_golang v1.1.0 // indirect
github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4 // indirect
github.com/rogpeppe/fastuuid v1.2.0 // indirect
github.com/russross/blackfriday v2.0.0+incompatible // indirect
github.com/sirupsen/logrus v1.4.2
github.com/spf13/afero v1.2.2 // indirect
github.com/spf13/cobra v0.0.5
github.com/spf13/jwalterweatherman v1.1.0 // indirect
github.com/spf13/viper v1.4.0 // indirect
github.com/stretchr/objx v0.2.0 // indirect
github.com/stretchr/testify v1.4.0 // indirect
github.com/thebsdbox/go-tftp v0.0.0-20190329154032-a7263f18c49c // indirect
github.com/ugorji/go v1.1.7 // indirect
github.com/whyrusleeping/go-tftp v0.0.0-20180830013254-3695fa5761ee // indirect
go.etcd.io/bbolt v1.3.3 // indirect
golang.org/x/crypto v0.0.0-20190820162420-60c769a6c586
golang.org/x/mobile v0.0.0-20190814143026-e8b3e6111d02 // indirect
golang.org/x/net v0.0.0-20190813141303-74dc4d7220e7 // indirect
golang.org/x/sys v0.0.0-20190813064441-fde4db37ae7a // indirect
golang.org/x/tools v0.0.0-20190822000311-fc82fb2afd64 // indirect
google.golang.org/api v0.9.0 // indirect
google.golang.org/genproto v0.0.0-20190819201941-24fa4b261c55 // indirect
google.golang.org/grpc v1.23.0 // indirect
honnef.co/go/tools v0.0.1-2019.2.2 // indirect
gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127 // indirect
)

replace (
github.com/plunder-app/plunder/pkg/apiserver => ./pkg/apiserver
github.com/plunder-app/plunder/pkg/certs => ./pkg/certs
github.com/plunder-app/plunder/pkg/services => ./pkg/services
github.com/plunder-app/plunder/pkg/ssh => ./pkg/ssh
)

0 comments on commit 835f8c5

Please sign in to comment.