-
Notifications
You must be signed in to change notification settings - Fork 13
/
go.mod
44 lines (41 loc) · 2.16 KB
/
go.mod
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
module github.com/plunder-app/plunder
go 1.12
require (
github.com/AlecAivazis/survey/v2 v2.0.7 // indirect
github.com/c4milo/gotoolkit v0.0.0-20190525173301-67483a18c17a // indirect
github.com/ghodss/yaml v1.0.0
github.com/gorilla/mux v1.7.4 // indirect
github.com/hooklift/assert v0.0.0-20170704181755-9d1defd6d214 // indirect
github.com/hooklift/iso9660 v1.0.0 // indirect
github.com/kr/pty v1.1.8 // indirect
github.com/krolaw/dhcp4 v0.0.0-20190909130307-a50d88189771 // indirect
github.com/mattn/go-colorable v0.1.6 // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/pkg/sftp v1.11.0 // indirect
github.com/plunder-app/BOOTy v0.0.0-20200513203223-f43f6ea742c4
github.com/plunder-app/plunder/pkg/apiserver v0.0.0-20200514155151-dfdcaab2e5cd
github.com/plunder-app/plunder/pkg/certs v0.0.0-20200514155151-dfdcaab2e5cd
github.com/plunder-app/plunder/pkg/parlay v0.0.0-20200514155151-dfdcaab2e5cd
github.com/plunder-app/plunder/pkg/parlay/parlaytypes v0.0.0-20200514155151-dfdcaab2e5cd
github.com/plunder-app/plunder/pkg/plunderlogging v0.0.0-20200514155151-dfdcaab2e5cd // indirect
github.com/plunder-app/plunder/pkg/services v0.0.0-20200514155151-dfdcaab2e5cd
github.com/plunder-app/plunder/pkg/ssh v0.0.0-20200514155151-dfdcaab2e5cd
github.com/plunder-app/plunder/pkg/utils v0.0.0-20200514155151-dfdcaab2e5cd
github.com/sirupsen/logrus v1.6.0
github.com/spf13/cobra v1.0.0
github.com/spf13/pflag v1.0.5 // indirect
github.com/thebsdbox/go-tftp v0.0.0-20190329154032-a7263f18c49c // indirect
github.com/whyrusleeping/go-tftp v0.0.0-20180830013254-3695fa5761ee // indirect
golang.org/x/crypto v0.0.0-20200510223506-06a226fb4e37 // indirect
golang.org/x/net v0.0.0-20200513185701-a91f0712d120 // indirect
golang.org/x/text v0.3.2 // 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/parlay => ./pkg/parlay
github.com/plunder-app/plunder/pkg/services => ./pkg/services
github.com/plunder-app/plunder/pkg/ssh => ./pkg/ssh
github.com/plunder-app/plunder/pkg/utils => ./pkg/utils
github.com/plunder-app/BOOTy => ../../plunder-app/BOOTy
)