-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathgo.mod
72 lines (69 loc) · 3.06 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
module github.com/cyverse-de/subscriptions
go 1.23.3
require (
github.com/cyverse-de/go-mod/cfg v0.0.2
github.com/cyverse-de/go-mod/gotelnats v0.0.15
github.com/cyverse-de/go-mod/logging v0.0.3
github.com/cyverse-de/go-mod/otelutils v0.0.5
github.com/cyverse-de/go-mod/pbinit v0.1.13
github.com/cyverse-de/go-mod/protobufjson v0.0.7
github.com/cyverse-de/go-mod/subjects v0.1.5
github.com/cyverse-de/p/go/qms v0.1.15
github.com/cyverse-de/p/go/requests v0.0.3
github.com/cyverse-de/p/go/svcerror v0.0.8
github.com/doug-martin/goqu/v9 v9.19.0
github.com/jmoiron/sqlx v1.4.0
github.com/knadh/koanf v1.5.0
github.com/labstack/echo/v4 v4.12.0
github.com/lib/pq v1.10.9
github.com/nats-io/nats.go v1.37.0
github.com/pkg/errors v0.9.1
github.com/samber/lo v1.47.0
github.com/sirupsen/logrus v1.9.3
github.com/uptrace/opentelemetry-go-extra/otelsql v0.3.2
github.com/uptrace/opentelemetry-go-extra/otelsqlx v0.3.2
go.opentelemetry.io/otel v1.31.0
google.golang.org/protobuf v1.35.2
)
require (
github.com/cenkalti/backoff/v4 v4.3.0 // indirect
github.com/cyverse-de/p v0.0.0-20241022195522-7109f3ff6072 // indirect
github.com/cyverse-de/p/go/analysis v0.0.16 // indirect
github.com/cyverse-de/p/go/containers v0.0.2 // indirect
github.com/cyverse-de/p/go/header v0.0.4 // indirect
github.com/cyverse-de/p/go/monitoring v0.0.5 // indirect
github.com/cyverse-de/p/go/user v0.0.11 // indirect
github.com/fsnotify/fsnotify v1.8.0 // indirect
github.com/go-logr/logr v1.4.2 // indirect
github.com/go-logr/stdr v1.2.2 // indirect
github.com/google/uuid v1.6.0 // indirect
github.com/grpc-ecosystem/grpc-gateway/v2 v2.23.0 // indirect
github.com/joho/godotenv v1.5.1 // indirect
github.com/klauspost/compress v1.17.11 // indirect
github.com/labstack/gommon v0.4.2 // indirect
github.com/magiconair/properties v1.8.7 // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.20 // indirect
github.com/mitchellh/copystructure v1.2.0 // indirect
github.com/mitchellh/mapstructure v1.5.0 // indirect
github.com/mitchellh/reflectwalk v1.0.2 // indirect
github.com/nats-io/nkeys v0.4.7 // indirect
github.com/nats-io/nuid v1.0.1 // indirect
github.com/stretchr/objx v0.5.0 // indirect
github.com/valyala/bytebufferpool v1.0.0 // indirect
github.com/valyala/fasttemplate v1.2.2 // indirect
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.31.0 // indirect
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.31.0 // indirect
go.opentelemetry.io/otel/metric v1.31.0 // indirect
go.opentelemetry.io/otel/sdk v1.31.0 // indirect
go.opentelemetry.io/otel/trace v1.31.0 // indirect
go.opentelemetry.io/proto/otlp v1.3.1 // indirect
golang.org/x/crypto v0.28.0 // indirect
golang.org/x/net v0.30.0 // indirect
golang.org/x/sys v0.26.0 // indirect
golang.org/x/text v0.19.0 // indirect
google.golang.org/genproto/googleapis/api v0.0.0-20241021214115-324edc3d5d38 // indirect
google.golang.org/genproto/googleapis/rpc v0.0.0-20241021214115-324edc3d5d38 // indirect
google.golang.org/grpc v1.67.1 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)