This repository has been archived by the owner on Jun 4, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 78
/
Copy pathgo.mod
50 lines (47 loc) · 2.19 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
45
46
47
48
49
50
module github.com/gravitational/teleport-plugins
go 1.16
require (
github.com/alecthomas/assert v0.0.0-20170929043011-405dbfeb8e38 // indirect
github.com/alecthomas/colour v0.1.0 // indirect
github.com/alecthomas/kong v0.2.17
github.com/alecthomas/repr v0.0.0-20200325044227-4184120f674c // indirect
github.com/alecthomas/template v0.0.0-20190718012654-fb15b899a751 // indirect
github.com/alecthomas/units v0.0.0-20210208195552-ff826a37aa15 // indirect
github.com/ghodss/yaml v1.0.0
github.com/go-resty/resty/v2 v2.3.0
github.com/gogo/protobuf v1.3.2 // indirect
github.com/google/btree v1.0.1 // indirect
github.com/google/go-querystring v1.0.0
github.com/google/uuid v1.2.0
github.com/gravitational/kingpin v2.1.11-0.20190130013101-742f2714c145+incompatible
github.com/gravitational/teleport/api v0.0.0-20210915192615-a8ca2d3f910e
github.com/gravitational/trace v1.1.16-0.20210609220119-4855e69c89fc
github.com/hashicorp/go-version v1.2.1
github.com/jonboulle/clockwork v0.2.2
github.com/json-iterator/go v1.1.10
github.com/julienschmidt/httprouter v1.3.0
github.com/kr/text v0.2.0 // indirect
github.com/mailgun/holster/v3 v3.15.2
github.com/manifoldco/promptui v0.8.0
github.com/pelletier/go-toml v1.8.0
github.com/peterbourgon/diskv v2.0.1+incompatible
github.com/peterbourgon/diskv/v3 v3.0.0 // indirect
github.com/sergi/go-diff v1.2.0 // indirect
github.com/sirupsen/logrus v1.8.1-0.20210219125412-f104497f2b21
github.com/stretchr/testify v1.7.0
go.etcd.io/bbolt v1.3.5
golang.org/x/crypto v0.0.0-20210220033148-5ea612d1eb83 // indirect
golang.org/x/net v0.0.0-20210222171744-9060382bd457
golang.org/x/sys v0.0.0-20210223095934-7937bea0104d // indirect
golang.org/x/term v0.0.0-20210220032956-6a3ed077a48d // indirect
golang.org/x/text v0.3.5 // indirect
google.golang.org/genproto v0.0.0-20210223151946-22b48be4551b // indirect
google.golang.org/grpc v1.31.0
gopkg.in/resty.v1 v1.12.0
k8s.io/apimachinery v0.20.4
)
replace (
github.com/gogo/protobuf => github.com/gravitational/protobuf v1.3.2-0.20201123192827-2b9fcfaffcbf
github.com/julienschmidt/httprouter => github.com/rw-access/httprouter v1.3.1-0.20210321233808-98e93175c124
google.golang.org/grpc => google.golang.org/grpc v1.29.1
)