Files
ferurl/go.mod
Andrej Mickov f27f1fc3d6 Fixed database migration, imporved logging, imporved hashing function,
introduced connection pooling instead of single conncetion.
2025-08-07 20:45:18 +02:00

23 lines
790 B
Modula-2

module github.com/ferdzo/ferurl
go 1.24.5
require github.com/go-chi/chi/v5 v5.2.2
require (
github.com/cespare/xxhash/v2 v2.3.0 // indirect
github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect
github.com/jackc/pgpassfile v1.0.0 // indirect
github.com/jackc/pgservicefile v0.0.0-20240606120523-5a60cdf6a761 // indirect
github.com/jackc/pgx/v5 v5.7.5 // indirect
github.com/jackc/puddle/v2 v2.2.2 // indirect
github.com/joho/godotenv v1.5.1 // indirect
github.com/lmittmann/tint v1.1.2 // indirect
github.com/redis/go-redis/v9 v9.12.0 // indirect
github.com/sirupsen/logrus v1.9.3 // indirect
golang.org/x/crypto v0.37.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
)