Redmage/go.mod

87 lines
3.5 KiB
Modula-2
Raw Normal View History

2024-04-06 01:22:00 +07:00
module github.com/tigorlazuardi/redmage
go 1.22.1
require (
2024-04-25 12:31:20 +07:00
github.com/ThreeDotsLabs/watermill v1.3.5
2024-04-25 13:05:41 +07:00
github.com/ThreeDotsLabs/watermill-sql/v3 v3.0.1
2024-04-08 16:59:42 +07:00
github.com/a-h/templ v0.2.648
2024-04-23 22:26:03 +07:00
github.com/aarondl/opt v0.0.0-20240108180805-338d04d857dc
2024-04-07 12:11:25 +07:00
github.com/adrg/xdg v0.4.0
2024-04-10 22:38:19 +07:00
github.com/alecthomas/units v0.0.0-20231202071711-9a357b53e9c9
2024-04-06 01:22:00 +07:00
github.com/fatih/color v1.16.0
github.com/go-chi/chi/v5 v5.0.12
2024-04-23 22:26:03 +07:00
github.com/google/go-cmp v0.6.0
github.com/jaswdr/faker/v2 v2.2.0
2024-04-08 16:59:42 +07:00
github.com/joho/godotenv v1.5.1
github.com/knadh/koanf/parsers/json v0.1.0
github.com/knadh/koanf/parsers/yaml v0.1.0
2024-04-06 01:22:00 +07:00
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
2024-04-07 12:11:25 +07:00
github.com/knadh/koanf/providers/posflag v0.1.0
github.com/knadh/koanf/providers/rawbytes v0.1.0
2024-04-06 01:22:00 +07:00
github.com/knadh/koanf/v2 v2.1.1
github.com/mattn/go-colorable v0.1.13
github.com/mattn/go-isatty v0.0.20
2024-04-23 22:26:03 +07:00
github.com/mattn/go-sqlite3 v1.14.16
github.com/pressly/goose/v3 v3.19.2
2024-04-10 22:38:19 +07:00
github.com/robfig/cron/v3 v3.0.0
2024-04-08 16:59:42 +07:00
github.com/simukti/sqldb-logger v0.0.0-20230108155151-646c1a075551
2024-04-06 01:22:00 +07:00
github.com/spf13/cobra v1.8.0
2024-04-07 12:11:25 +07:00
github.com/spf13/pflag v1.0.5
2024-04-23 22:26:03 +07:00
github.com/stephenafamo/bob v0.25.0
2024-04-10 22:38:19 +07:00
github.com/teivah/broadcast v0.1.0
2024-04-25 13:05:41 +07:00
github.com/walterwanderley/watermill-sqlite v0.0.0-20240320170051-3fffaf9a8167
2024-04-06 01:22:00 +07:00
)
2024-04-13 00:15:31 +07:00
require (
2024-04-23 22:26:03 +07:00
github.com/aarondl/json v0.0.0-20221020222930-8b0db17ef1bf // indirect
2024-04-13 00:15:31 +07:00
github.com/cenkalti/backoff/v4 v4.3.0 // indirect
2024-04-25 12:31:20 +07:00
github.com/google/uuid v1.6.0 // indirect
2024-04-13 00:15:31 +07:00
github.com/grpc-ecosystem/grpc-gateway/v2 v2.19.0 // indirect
2024-04-25 12:31:20 +07:00
github.com/lithammer/shortuuid/v3 v3.0.7 // indirect
github.com/oklog/ulid v1.3.1 // indirect
github.com/pkg/errors v0.9.1 // indirect
2024-04-23 22:26:03 +07:00
github.com/qdm12/reprint v0.0.0-20200326205758-722754a53494 // indirect
2024-04-13 00:15:31 +07:00
github.com/samber/lo v1.38.1 // indirect
2024-04-23 22:26:03 +07:00
github.com/stephenafamo/scan v0.4.2 // indirect
2024-04-13 00:15:31 +07:00
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.25.0 // indirect
go.opentelemetry.io/proto/otlp v1.1.0 // indirect
2024-04-14 00:32:55 +07:00
golang.org/x/image v0.0.0-20191009234506-e7c1f5e7dbb8 // indirect
2024-04-13 00:15:31 +07:00
golang.org/x/net v0.23.0 // indirect
golang.org/x/text v0.14.0 // indirect
google.golang.org/genproto/googleapis/api v0.0.0-20240227224415-6ceb2ff114de // indirect
google.golang.org/genproto/googleapis/rpc v0.0.0-20240401170217-c3f982113cda // indirect
google.golang.org/grpc v1.63.0 // indirect
google.golang.org/protobuf v1.33.0 // indirect
)
2024-04-12 22:47:22 +07:00
2024-04-06 01:22:00 +07:00
require (
2024-04-13 00:15:31 +07:00
github.com/XSAM/otelsql v0.29.0
2024-04-14 00:32:55 +07:00
github.com/disintegration/imaging v1.6.2
github.com/felixge/httpsnoop v1.0.4 // indirect
2024-04-08 16:59:42 +07:00
github.com/fsnotify/fsnotify v1.7.0 // indirect
2024-04-12 01:32:06 +07:00
github.com/go-logr/logr v1.4.1 // indirect
github.com/go-logr/stdr v1.2.2 // indirect
2024-04-06 01:22:00 +07:00
github.com/go-viper/mapstructure/v2 v2.0.0-alpha.1 // indirect
github.com/inconshreveable/mousetrap v1.1.0 // indirect
github.com/knadh/koanf/maps v0.1.1 // indirect
github.com/mfridman/interpolate v0.0.2 // indirect
2024-04-06 01:22:00 +07:00
github.com/mitchellh/copystructure v1.2.0 // indirect
github.com/mitchellh/reflectwalk v1.0.2 // indirect
2024-04-23 22:26:03 +07:00
github.com/riandyrn/otelchi v0.6.0
2024-04-12 22:47:22 +07:00
github.com/samber/slog-multi v1.0.2
github.com/sethvargo/go-retry v0.2.4 // indirect
2024-04-23 22:26:03 +07:00
go.opentelemetry.io/otel v1.25.0
2024-04-13 00:15:31 +07:00
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.25.0
2024-04-12 01:32:06 +07:00
go.opentelemetry.io/otel/metric v1.25.0 // indirect
go.opentelemetry.io/otel/sdk v1.25.0
2024-04-23 22:26:03 +07:00
go.opentelemetry.io/otel/trace v1.25.0
go.uber.org/multierr v1.11.0 // indirect
2024-04-09 21:49:23 +07:00
golang.org/x/exp v0.0.0-20231219180239-dc181d75b848 // indirect
2024-04-25 13:05:41 +07:00
golang.org/x/sync v0.6.0
golang.org/x/sys v0.18.0 // indirect
2024-04-06 21:23:55 +07:00
gopkg.in/yaml.v3 v3.0.1 // indirect
2024-04-06 01:22:00 +07:00
)