44 lines
1.6 KiB
Modula-2
44 lines
1.6 KiB
Modula-2
module github.com/dbiz/cdp/data-layer/api
|
|
|
|
go 1.22
|
|
|
|
require (
|
|
github.com/ClickHouse/clickhouse-go/v2 v2.30.0
|
|
github.com/caarlos0/env/v11 v11.2.2
|
|
github.com/go-chi/chi/v5 v5.1.0
|
|
github.com/go-playground/validator/v10 v10.22.1
|
|
github.com/google/uuid v1.6.0
|
|
github.com/jackc/pgx/v5 v5.6.0
|
|
github.com/redis/rueidis v1.0.45
|
|
go.uber.org/zap v1.27.0
|
|
)
|
|
|
|
require (
|
|
github.com/ClickHouse/ch-go v0.61.5 // indirect
|
|
github.com/andybalholm/brotli v1.1.1 // indirect
|
|
github.com/gabriel-vasile/mimetype v1.4.3 // indirect
|
|
github.com/go-faster/city v1.0.1 // indirect
|
|
github.com/go-faster/errors v0.7.1 // indirect
|
|
github.com/go-playground/locales v0.14.1 // indirect
|
|
github.com/go-playground/universal-translator v0.18.1 // indirect
|
|
github.com/jackc/pgpassfile v1.0.0 // indirect
|
|
github.com/jackc/pgservicefile v0.0.0-20221227161230-091c0ba34f0a // indirect
|
|
github.com/jackc/puddle/v2 v2.2.1 // indirect
|
|
github.com/klauspost/compress v1.17.7 // indirect
|
|
github.com/leodido/go-urn v1.4.0 // indirect
|
|
github.com/paulmach/orb v0.11.1 // indirect
|
|
github.com/pierrec/lz4/v4 v4.1.21 // indirect
|
|
github.com/pkg/errors v0.9.1 // indirect
|
|
github.com/segmentio/asm v1.2.0 // indirect
|
|
github.com/shopspring/decimal v1.4.0 // indirect
|
|
go.opentelemetry.io/otel v1.26.0 // indirect
|
|
go.opentelemetry.io/otel/trace v1.26.0 // indirect
|
|
go.uber.org/multierr v1.11.0 // indirect
|
|
golang.org/x/crypto v0.28.0 // indirect
|
|
golang.org/x/net v0.30.0 // indirect
|
|
golang.org/x/sync v0.8.0 // indirect
|
|
golang.org/x/sys v0.26.0 // indirect
|
|
golang.org/x/text v0.19.0 // indirect
|
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
|
)
|