-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathgo.mod
More file actions
57 lines (53 loc) · 2.19 KB
/
Copy pathgo.mod
File metadata and controls
57 lines (53 loc) · 2.19 KB
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
module shopnexus
// 1.27 is where encoding/json/v2 became an ordinary importable package — no GOEXPERIMENT,
// covered by the compatibility promise. This codebase marshals with v2 (see shared/httpx),
// so 1.27 is a floor rather than a preference. Pinned to rc2 until 1.27.0 is published.
go 1.27
toolchain go1.27rc2
require (
github.com/coder/websocket v1.8.15
github.com/coreos/go-oidc/v3 v3.20.0
github.com/go-playground/validator/v10 v10.30.3
github.com/golang-jwt/jwt/v5 v5.3.1
github.com/google/uuid v1.6.0
github.com/jackc/pgx/v5 v5.10.0
github.com/nats-io/nats.go v1.52.0
github.com/redis/rueidis v1.0.76
github.com/restatedev/sdk-go v1.0.2
github.com/stripe/stripe-go/v82 v82.5.1
go.uber.org/fx v1.24.0
golang.org/x/crypto v0.54.0
golang.org/x/text v0.40.0
gopkg.in/yaml.v3 v3.0.1
)
require (
github.com/bahlo/generic-list-go v0.2.0 // indirect
github.com/buger/jsonparser v1.6.1 // indirect
github.com/cespare/xxhash/v2 v2.3.0 // indirect
github.com/gabriel-vasile/mimetype v1.4.15 // indirect
github.com/go-jose/go-jose/v4 v4.1.4 // indirect
github.com/go-playground/locales v0.14.1 // indirect
github.com/go-playground/universal-translator v0.18.1 // indirect
github.com/invopop/jsonschema v0.14.0 // indirect
github.com/jackc/pgpassfile v1.0.0 // indirect
github.com/jackc/pgservicefile v0.0.0-20240606120523-5a60cdf6a761 // indirect
github.com/jackc/puddle/v2 v2.2.2 // indirect
github.com/klauspost/compress v1.19.2 // indirect
github.com/leodido/go-urn v1.5.0 // indirect
github.com/mr-tron/base58 v1.3.0 // indirect
github.com/nats-io/nkeys v0.4.16 // indirect
github.com/nats-io/nuid v1.0.1 // indirect
github.com/pb33f/ordered-map/v2 v2.3.1 // indirect
github.com/rogpeppe/go-internal v1.15.0 // indirect
github.com/tetratelabs/wazero v1.12.0 // indirect
go.opentelemetry.io/otel v1.45.0 // indirect
go.opentelemetry.io/otel/trace v1.45.0 // indirect
go.uber.org/dig v1.19.0 // indirect
go.uber.org/multierr v1.11.0 // indirect
go.uber.org/zap v1.28.0 // indirect
go.yaml.in/yaml/v4 v4.0.0-rc.6 // indirect
golang.org/x/oauth2 v0.36.0 // indirect
golang.org/x/sync v0.22.0 // indirect
golang.org/x/sys v0.47.0 // indirect
google.golang.org/protobuf v1.36.11 // indirect
)