-
Notifications
You must be signed in to change notification settings - Fork 28
/
go.mod
53 lines (50 loc) · 2.2 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
module github.com/hashicorp-demoapp/product-api-go
go 1.17
require (
github.com/HdrHistogram/hdrhistogram-go v1.1.0 // indirect
github.com/cucumber/godog v0.9.0
github.com/cucumber/messages-go/v10 v10.0.3
github.com/fsnotify/fsnotify v1.4.7
github.com/go-sql-driver/mysql v1.4.1 // indirect
github.com/golang-jwt/jwt/v4 v4.1.0
github.com/gorilla/mux v1.7.3
github.com/hashicorp-demoapp/go-hckit v0.0.2
github.com/hashicorp/go-hclog v0.10.0
github.com/jmoiron/sqlx v1.2.0
github.com/lib/pq v1.2.0
github.com/mattn/go-sqlite3 v1.11.0 // indirect
github.com/nicholasjackson/env v0.5.0
github.com/rs/cors v1.8.2
github.com/stretchr/testify v1.7.0
go.opentelemetry.io/otel v0.2.0
go.opentelemetry.io/otel/exporter/metric/prometheus v0.2.0
golang.org/x/sys v0.0.0-20191210023423-ac6580df4449 // indirect
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1
)
require (
github.com/DataDog/sketches-go v0.0.0-20190923095040-43f19ad77ff7 // indirect
github.com/beorn7/perks v1.0.0 // indirect
github.com/cucumber/gherkin-go/v11 v11.0.0 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/fatih/color v1.7.0 // indirect
github.com/gofrs/uuid v3.2.0+incompatible // indirect
github.com/gogo/protobuf v1.3.1 // indirect
github.com/golang/protobuf v1.3.2 // indirect
github.com/google/go-cmp v0.5.4 // indirect
github.com/mattn/go-colorable v0.1.4 // indirect
github.com/mattn/go-isatty v0.0.10 // indirect
github.com/matttproud/golang_protobuf_extensions v1.0.1 // indirect
github.com/opentracing/opentracing-go v1.2.0 // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/prometheus/client_golang v0.9.3 // indirect
github.com/prometheus/client_model v0.0.0-20190129233127-fd36f4220a90 // indirect
github.com/prometheus/common v0.4.0 // indirect
github.com/prometheus/procfs v0.0.0-20190507164030-5867b95ac084 // indirect
github.com/stretchr/objx v0.2.0 // indirect
github.com/uber/jaeger-client-go v2.25.0+incompatible // indirect
github.com/uber/jaeger-lib v2.4.0+incompatible // indirect
go.uber.org/atomic v1.7.0 // indirect
google.golang.org/grpc v1.24.0 // indirect
gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c // indirect
)