-
Notifications
You must be signed in to change notification settings - Fork 1
/
go.mod
84 lines (73 loc) · 3.59 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
module github.com/go-phorce/dolly
go 1.17
require (
github.com/DataDog/datadog-go v4.8.0+incompatible
github.com/GeertJohan/go.rice v1.0.0 // indirect
github.com/Microsoft/go-winio v0.5.0 // indirect
github.com/alecthomas/template v0.0.0-20190718012654-fb15b899a751 // indirect
github.com/alecthomas/units v0.0.0-20190924025748-f65c72e2690d // indirect
github.com/aws/aws-sdk-go v1.40.8
github.com/beorn7/perks v1.0.1 // indirect
github.com/cespare/xxhash/v2 v2.1.1 // indirect
github.com/cloudflare/cfssl v1.6.0
github.com/daaku/go.zipexe v1.0.0 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/go-phorce/cov-report v1.1.1-0.20200622030546-3fb510c4b1ba
github.com/go-sql-driver/mysql v1.5.0 // indirect
github.com/golang/protobuf v1.5.2 // indirect
github.com/google/certificate-transparency-go v1.0.21 // indirect
github.com/google/go-cmp v0.5.6 // indirect
github.com/hashicorp/go-immutable-radix v1.0.0
github.com/hashicorp/golang-lru v0.5.4 // indirect
github.com/jinzhu/copier v0.3.2
github.com/jmespath/go-jmespath v0.4.0 // indirect
github.com/jmhodges/clock v0.0.0-20160418191101-880ee4c33548 // indirect
github.com/jmoiron/sqlx v1.2.0 // indirect
github.com/jteeuwen/go-bindata v3.0.7+incompatible
github.com/julienschmidt/httprouter v1.3.0
github.com/kisielk/sqlstruct v0.0.0-20150923205031-648daed35d49 // indirect
github.com/lib/pq v1.7.0 // indirect
github.com/mattn/go-sqlite3 v1.14.0 // indirect
github.com/mattn/goveralls v0.0.9
github.com/matttproud/golang_protobuf_extensions v1.0.2-0.20181231171920-c182affec369 // indirect
github.com/miekg/pkcs11 v1.0.3
github.com/pkg/errors v0.9.1
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/prometheus/client_golang v1.11.0
github.com/prometheus/client_model v0.2.0 // indirect
github.com/prometheus/common v0.26.0 // indirect
github.com/prometheus/procfs v0.6.0 // indirect
github.com/rs/cors v1.7.0
github.com/stretchr/objx v0.2.0 // indirect
github.com/stretchr/testify v1.7.0
github.com/ugorji/go/codec v1.2.6
github.com/weppos/publicsuffix-go v0.13.0 // indirect
github.com/yuin/goldmark v1.4.0 // indirect
github.com/zmap/zcrypto v0.0.0-20201128221613-3719af1573cf // indirect
github.com/zmap/zlint/v3 v3.0.0 // indirect
golang.org/x/crypto v0.0.0-20210616213533-5ff15b29337e
golang.org/x/lint v0.0.0-20210508222113-6edffad5e616
golang.org/x/mod v0.4.2 // indirect
golang.org/x/net v0.0.0-20210614182718-04defd469f4e // indirect
golang.org/x/sys v0.0.0-20210615035016-665e8c7367d1 // indirect
golang.org/x/text v0.3.6 // indirect
golang.org/x/tools v0.1.4
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect
google.golang.org/genproto v0.0.0-20210426193834-eac7f76ac494 // indirect
google.golang.org/grpc v1.38.0
google.golang.org/protobuf v1.26.0 // indirect
gopkg.in/alecthomas/kingpin.v2 v2.2.6
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
gopkg.in/natefinch/lumberjack.v2 v2.0.0
gopkg.in/yaml.v2 v2.4.0
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect
)
require github.com/kr/text v0.2.0 // indirect
replace golang.org/x/text => golang.org/x/text v0.3.6
replace github.com/yuin/goldmark => github.com/yuin/goldmark v1.4.0
replace github.com/nats-io/jwt => github.com/nats-io/jwt/v2 v2.0.1
replace github.com/nats-io/nkeys => github.com/nats-io/nkeys v0.3.0
replace github.com/nats-io/nats.go => github.com/nats-io/nats.go v1.11.0
replace github.com/gogo/protobuf => github.com/gogo/protobuf v1.3.2
replace github.com/nats-io/nats-server/v2 => github.com/nats-io/nats-server/v2 v2.3.2
replace github.com/aws/aws-sdk-go => github.com/aws/aws-sdk-go v1.40.8