56 lines
2.1 KiB
Modula-2
56 lines
2.1 KiB
Modula-2
module music-server
|
|
|
|
go 1.23.0
|
|
|
|
toolchain go1.24.2
|
|
|
|
require (
|
|
github.com/MShekow/directory-checksum v1.4.6
|
|
github.com/a-h/templ v0.3.865
|
|
github.com/gin-contrib/static v1.1.2
|
|
github.com/gin-gonic/gin v1.10.0
|
|
github.com/golang-migrate/migrate/v4 v4.18.1
|
|
github.com/jackc/pgx/v5 v5.5.5
|
|
github.com/labstack/echo/v4 v4.13.3
|
|
github.com/lib/pq v1.10.9
|
|
github.com/spf13/afero v1.11.0
|
|
github.com/swaggo/echo-swagger v1.4.1
|
|
github.com/swaggo/swag v1.16.4
|
|
)
|
|
|
|
require (
|
|
github.com/KyleBanks/depth v1.2.1 // indirect
|
|
github.com/PuerkitoBio/purell v1.1.1 // indirect
|
|
github.com/PuerkitoBio/urlesc v0.0.0-20170810143723-de5bf2ad4578 // indirect
|
|
github.com/docker/docker v27.3.1+incompatible // indirect
|
|
github.com/ghodss/yaml v1.0.0 // indirect
|
|
github.com/go-errors/errors v1.5.1 // indirect
|
|
github.com/go-openapi/jsonpointer v0.19.5 // indirect
|
|
github.com/go-openapi/jsonreference v0.19.6 // indirect
|
|
github.com/go-openapi/spec v0.20.4 // indirect
|
|
github.com/go-openapi/swag v0.19.15 // indirect
|
|
github.com/hashicorp/errwrap v1.1.0 // indirect
|
|
github.com/hashicorp/go-multierror v1.1.1 // indirect
|
|
github.com/jackc/pgpassfile v1.0.0 // indirect
|
|
github.com/jackc/pgservicefile v0.0.0-20231201235250-de7065d80cb9 // indirect
|
|
github.com/jackc/puddle/v2 v2.2.1 // indirect
|
|
github.com/josharian/intern v1.0.0 // indirect
|
|
github.com/labstack/gommon v0.4.2 // indirect
|
|
github.com/mailru/easyjson v0.7.7 // indirect
|
|
github.com/mattn/go-colorable v0.1.13 // indirect
|
|
github.com/mattn/go-isatty v0.0.20 // indirect
|
|
github.com/swaggo/files/v2 v2.0.0 // indirect
|
|
github.com/valyala/bytebufferpool v1.0.0 // indirect
|
|
github.com/valyala/fasttemplate v1.2.2 // indirect
|
|
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.57.0 // indirect
|
|
go.opentelemetry.io/otel/trace v1.32.0 // indirect
|
|
go.uber.org/atomic v1.7.0 // indirect
|
|
golang.org/x/arch v0.8.0 // indirect
|
|
golang.org/x/crypto v0.37.0 // indirect
|
|
golang.org/x/net v0.39.0 // indirect
|
|
golang.org/x/sync v0.13.0 // indirect
|
|
golang.org/x/sys v0.32.0 // indirect
|
|
golang.org/x/text v0.24.0 // indirect
|
|
google.golang.org/protobuf v1.34.2 // indirect
|
|
)
|