Bluemage/go.mod

86 lines
3.5 KiB
Modula-2
Raw Normal View History

2024-08-04 23:16:05 +07:00
module github.com/tigorlazuardi/bluemage
go 1.22.5
2024-08-05 23:06:32 +07:00
require (
buf.build/gen/go/bufbuild/protovalidate/protocolbuffers/go v1.34.2-20240717164558-a6c49f84cc0f.2
connectrpc.com/connect v1.16.2
connectrpc.com/cors v0.1.0
2024-08-11 17:08:27 +07:00
connectrpc.com/validate v0.1.0
2024-08-05 23:06:32 +07:00
github.com/aarondl/opt v0.0.0-20240623220848-083f18ab9536
2024-08-11 17:08:27 +07:00
github.com/adrg/xdg v0.5.0
2024-08-05 23:06:32 +07:00
github.com/bufbuild/protovalidate-go v0.6.3
2024-08-07 10:41:00 +07:00
github.com/fatih/color v1.17.0
2024-08-11 17:08:27 +07:00
github.com/go-faster/errors v0.7.1
github.com/go-faster/jx v1.1.0
2024-08-05 23:06:32 +07:00
github.com/jaswdr/faker/v2 v2.3.0
2024-08-11 19:50:43 +07:00
github.com/joho/godotenv v1.5.1
2024-08-11 17:08:27 +07:00
github.com/knadh/koanf/parsers/json v0.1.0
github.com/knadh/koanf/parsers/yaml v0.1.0
github.com/knadh/koanf/providers/confmap v0.1.0
github.com/knadh/koanf/providers/env v0.1.0
github.com/knadh/koanf/providers/file v0.1.0
github.com/knadh/koanf/providers/posflag v0.1.0
github.com/knadh/koanf/providers/rawbytes v0.1.0
github.com/knadh/koanf/v2 v2.1.1
github.com/mattn/go-sqlite3 v1.14.17
2024-08-11 17:08:27 +07:00
github.com/ogen-go/ogen v1.2.2
github.com/rs/cors v1.11.0
github.com/samber/slog-multi v1.2.0
2024-08-11 17:08:27 +07:00
github.com/simukti/sqldb-logger v0.0.0-20230108155151-646c1a075551
github.com/spf13/cobra v1.8.1
2024-08-11 17:08:27 +07:00
github.com/spf13/pflag v1.0.5
2024-08-05 23:06:32 +07:00
github.com/stephenafamo/bob v0.28.1
2024-08-07 10:41:00 +07:00
github.com/tidwall/pretty v1.2.1
go.opencensus.io v0.24.0
2024-08-11 17:08:27 +07:00
go.opentelemetry.io/otel v1.28.0
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.28.0
2024-08-11 17:08:27 +07:00
go.opentelemetry.io/otel/metric v1.28.0
go.opentelemetry.io/otel/sdk v1.28.0
2024-08-11 17:08:27 +07:00
go.opentelemetry.io/otel/trace v1.28.0
golang.org/x/net v0.26.0
2024-08-05 23:06:32 +07:00
google.golang.org/protobuf v1.34.2
)
require (
github.com/aarondl/json v0.0.0-20221020222930-8b0db17ef1bf // indirect
github.com/antlr4-go/antlr/v4 v4.13.0 // indirect
github.com/cenkalti/backoff/v4 v4.3.0 // indirect
2024-08-11 17:08:27 +07:00
github.com/dlclark/regexp2 v1.11.0 // indirect
github.com/fsnotify/fsnotify v1.6.0 // indirect
github.com/ghodss/yaml v1.0.0 // indirect
github.com/go-faster/yaml v0.4.6 // indirect
github.com/go-logr/logr v1.4.2 // indirect
github.com/go-logr/stdr v1.2.2 // indirect
github.com/go-viper/mapstructure/v2 v2.0.0-alpha.1 // indirect
github.com/golang/groupcache v0.0.0-20200121045136-8c9f03a8e57e // indirect
2024-08-05 23:06:32 +07:00
github.com/google/cel-go v0.20.1 // indirect
2024-08-11 17:08:27 +07:00
github.com/google/uuid v1.6.0 // indirect
github.com/grpc-ecosystem/grpc-gateway/v2 v2.20.0 // indirect
github.com/inconshreveable/mousetrap v1.1.0 // indirect
2024-08-11 17:08:27 +07:00
github.com/knadh/koanf/maps v0.1.1 // indirect
2024-08-07 10:41:00 +07:00
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.20 // indirect
2024-08-11 17:08:27 +07:00
github.com/mitchellh/copystructure v1.2.0 // indirect
github.com/mitchellh/reflectwalk v1.0.2 // indirect
2024-08-05 23:06:32 +07:00
github.com/qdm12/reprint v0.0.0-20200326205758-722754a53494 // indirect
github.com/samber/lo v1.38.1 // indirect
2024-08-11 17:08:27 +07:00
github.com/segmentio/asm v1.2.0 // indirect
2024-08-05 23:06:32 +07:00
github.com/stephenafamo/scan v0.4.2 // indirect
github.com/stoewer/go-strcase v1.3.0 // indirect
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.28.0 // indirect
go.opentelemetry.io/proto/otlp v1.3.1 // indirect
2024-08-11 17:08:27 +07:00
go.uber.org/multierr v1.11.0 // indirect
go.uber.org/zap v1.27.0 // indirect
2024-08-05 23:06:32 +07:00
golang.org/x/exp v0.0.0-20240325151524-a685a6edb6d8 // indirect
2024-08-11 17:08:27 +07:00
golang.org/x/sync v0.7.0 // indirect
golang.org/x/sys v0.22.0 // indirect
golang.org/x/text v0.16.0 // indirect
google.golang.org/genproto/googleapis/api v0.0.0-20240701130421-f6361c86f094 // indirect
google.golang.org/genproto/googleapis/rpc v0.0.0-20240701130421-f6361c86f094 // indirect
google.golang.org/grpc v1.64.0 // indirect
gopkg.in/natefinch/lumberjack.v2 v2.2.1 // indirect
2024-08-11 17:08:27 +07:00
gopkg.in/yaml.v2 v2.4.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
2024-08-05 23:06:32 +07:00
)