-
Notifications
You must be signed in to change notification settings - Fork 4
/
go.mod
48 lines (45 loc) · 1.97 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
module github.com/cyverse-de/user-info
go 1.21
require (
github.com/DATA-DOG/go-sqlmock v1.3.0
github.com/cyverse-de/configurate v0.0.0-20171005230251-9b512d37328e
github.com/cyverse-de/dbutil v1.0.1
github.com/cyverse-de/go-mod/otelutils v0.0.2
github.com/cyverse-de/queries v1.0.1
github.com/gorilla/mux v1.8.0
github.com/lib/pq v1.10.4
github.com/sirupsen/logrus v1.0.5-0.20180129181852-768a92a02685
github.com/spf13/viper v1.0.0
go.opentelemetry.io/contrib/instrumentation/github.com/gorilla/mux/otelmux v0.30.0
)
require (
github.com/BurntSushi/toml v1.0.0 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/felixge/httpsnoop v1.0.2 // indirect
github.com/fsnotify/fsnotify v1.4.9 // indirect
github.com/go-logr/logr v1.2.3 // indirect
github.com/go-logr/stdr v1.2.2 // indirect
github.com/google/uuid v1.3.0 // indirect
github.com/hashicorp/hcl v0.0.0-20171017181929-23c074d0eceb // indirect
github.com/magiconair/properties v1.7.6 // indirect
github.com/mitchellh/mapstructure v0.0.0-20180220230111-00c29f56e238 // indirect
github.com/pelletier/go-toml v1.1.0 // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/spf13/afero v1.0.2 // indirect
github.com/spf13/cast v1.2.0 // indirect
github.com/spf13/jwalterweatherman v0.0.0-20180109140146-7c0cea34c8ec // indirect
github.com/spf13/pflag v1.0.0 // indirect
github.com/uptrace/opentelemetry-go-extra/otelsql v0.1.11 // indirect
go.opentelemetry.io/otel v1.6.1 // indirect
go.opentelemetry.io/otel/exporters/jaeger v1.6.1 // indirect
go.opentelemetry.io/otel/metric v0.28.0 // indirect
go.opentelemetry.io/otel/sdk v1.6.1 // indirect
go.opentelemetry.io/otel/trace v1.6.1 // indirect
golang.org/x/crypto v0.17.0 // indirect
golang.org/x/sys v0.15.0 // indirect
golang.org/x/term v0.15.0 // indirect
golang.org/x/text v0.14.0 // indirect
gopkg.in/airbrake/gobrake.v2 v2.0.9 // indirect
gopkg.in/gemnasium/logrus-airbrake-hook.v2 v2.1.2 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
)