36 lines
1.1 KiB
Modula-2
36 lines
1.1 KiB
Modula-2
module web-app-template
|
|
|
|
go 1.23.0
|
|
|
|
toolchain go1.24.5
|
|
|
|
require (
|
|
github.com/a-h/templ v0.3.906
|
|
github.com/golang-migrate/migrate/v4 v4.18.3
|
|
github.com/google/uuid v1.6.0
|
|
github.com/joho/godotenv v1.5.1
|
|
github.com/mattn/go-sqlite3 v1.14.28
|
|
github.com/prometheus/client_golang v1.22.0
|
|
github.com/stretchr/testify v1.10.0
|
|
golang.org/x/crypto v0.40.0
|
|
golang.org/x/net v0.42.0
|
|
)
|
|
|
|
require (
|
|
github.com/beorn7/perks v1.0.1 // indirect
|
|
github.com/cespare/xxhash/v2 v2.3.0 // indirect
|
|
github.com/davecgh/go-spew v1.1.1 // indirect
|
|
github.com/hashicorp/errwrap v1.1.0 // indirect
|
|
github.com/hashicorp/go-multierror v1.1.1 // indirect
|
|
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
|
|
github.com/pmezard/go-difflib v1.0.0 // indirect
|
|
github.com/prometheus/client_model v0.6.1 // indirect
|
|
github.com/prometheus/common v0.62.0 // indirect
|
|
github.com/prometheus/procfs v0.15.1 // indirect
|
|
github.com/stretchr/objx v0.5.2 // indirect
|
|
go.uber.org/atomic v1.11.0 // indirect
|
|
golang.org/x/sys v0.34.0 // indirect
|
|
google.golang.org/protobuf v1.36.5 // indirect
|
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
|
)
|