73 lines
3.1 KiB
Modula-2
73 lines
3.1 KiB
Modula-2
module tesseract
|
|
|
|
go 1.22.0
|
|
|
|
require (
|
|
github.com/docker/docker v27.3.1+incompatible
|
|
github.com/golang-migrate/migrate/v4 v4.18.1
|
|
github.com/google/uuid v1.6.0
|
|
github.com/labstack/echo/v4 v4.12.0
|
|
github.com/olahol/melody v1.2.1
|
|
github.com/uptrace/bun v1.2.5
|
|
github.com/uptrace/bun/dialect/sqlitedialect v1.2.5
|
|
github.com/uptrace/bun/driver/sqliteshim v1.2.5
|
|
github.com/uptrace/bun/extra/bundebug v1.2.5
|
|
modernc.org/sqlite v1.33.1
|
|
)
|
|
|
|
require (
|
|
github.com/Microsoft/go-winio v0.6.2 // indirect
|
|
github.com/containerd/log v0.1.0 // indirect
|
|
github.com/distribution/reference v0.6.0 // indirect
|
|
github.com/docker/go-connections v0.5.0 // indirect
|
|
github.com/docker/go-units v0.5.0 // indirect
|
|
github.com/dustin/go-humanize v1.0.1 // indirect
|
|
github.com/fatih/color v1.18.0 // indirect
|
|
github.com/felixge/httpsnoop v1.0.4 // indirect
|
|
github.com/go-logr/logr v1.4.2 // indirect
|
|
github.com/go-logr/stdr v1.2.2 // indirect
|
|
github.com/gogo/protobuf v1.3.2 // indirect
|
|
github.com/golang-jwt/jwt v3.2.2+incompatible // indirect
|
|
github.com/gorilla/websocket v1.5.3 // indirect
|
|
github.com/hashicorp/errwrap v1.1.0 // indirect
|
|
github.com/hashicorp/go-multierror v1.1.1 // indirect
|
|
github.com/hashicorp/golang-lru/v2 v2.0.7 // indirect
|
|
github.com/jinzhu/inflection v1.0.0 // indirect
|
|
github.com/labstack/gommon v0.4.2 // indirect
|
|
github.com/mattn/go-colorable v0.1.13 // indirect
|
|
github.com/mattn/go-isatty v0.0.20 // indirect
|
|
github.com/mattn/go-sqlite3 v1.14.24 // indirect
|
|
github.com/moby/docker-image-spec v1.3.1 // indirect
|
|
github.com/ncruces/go-strftime v0.1.9 // indirect
|
|
github.com/opencontainers/go-digest v1.0.0 // indirect
|
|
github.com/opencontainers/image-spec v1.1.0 // indirect
|
|
github.com/pkg/errors v0.9.1 // indirect
|
|
github.com/puzpuzpuz/xsync/v3 v3.4.0 // indirect
|
|
github.com/remyoudompheng/bigfft v0.0.0-20230129092748-24d4a6f8daec // indirect
|
|
github.com/tmthrgd/go-hex v0.0.0-20190904060850-447a3041c3bc // indirect
|
|
github.com/valyala/bytebufferpool v1.0.0 // indirect
|
|
github.com/valyala/fasttemplate v1.2.2 // indirect
|
|
github.com/vmihailenco/msgpack/v5 v5.4.1 // indirect
|
|
github.com/vmihailenco/tagparser/v2 v2.0.0 // indirect
|
|
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.56.0 // indirect
|
|
go.opentelemetry.io/otel v1.31.0 // indirect
|
|
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp 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.uber.org/atomic v1.11.0 // indirect
|
|
golang.org/x/crypto v0.28.0 // indirect
|
|
golang.org/x/exp v0.0.0-20241009180824-f66d83c29e7c // 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
|
|
golang.org/x/time v0.5.0 // indirect
|
|
gotest.tools/v3 v3.5.1 // indirect
|
|
modernc.org/gc/v3 v3.0.0-20241004144649-1aea3fae8852 // indirect
|
|
modernc.org/libc v1.61.0 // indirect
|
|
modernc.org/mathutil v1.6.0 // indirect
|
|
modernc.org/memory v1.8.0 // indirect
|
|
modernc.org/strutil v1.2.0 // indirect
|
|
modernc.org/token v1.1.0 // indirect
|
|
)
|