phoenix/go.mod
Ivan R. 5aa2cee5b1
chore: migrate to database/sql
Since I started simplifying, I decided to abandon ORM.

I won’t say that this makes much sense, everything works more or less as before.
Except that the size of the program has decreased slightly again, by about a megabyte.
2024-03-26 00:40:52 +05:00

18 lines
377 B
Modula-2

module github.com/ordinary-dev/phoenix
go 1.22
require (
github.com/golang-jwt/jwt/v5 v5.2.1
github.com/joho/godotenv v1.5.1
github.com/kelseyhightower/envconfig v1.4.0
github.com/mattn/go-sqlite3 v1.14.22
github.com/sirupsen/logrus v1.9.3
golang.org/x/crypto v0.21.0
)
require (
github.com/stretchr/testify v1.8.3 // indirect
golang.org/x/sys v0.18.0 // indirect
)