phoenix/go.mod

22 lines
532 B
Modula-2
Raw Normal View History

2023-04-06 10:36:11 +05:00
module github.com/ordinary-dev/phoenix
go 1.22
2023-04-06 10:36:11 +05:00
require (
github.com/golang-jwt/jwt/v5 v5.2.0
github.com/joho/godotenv v1.5.1
github.com/kelseyhightower/envconfig v1.4.0
github.com/sirupsen/logrus v1.9.3
golang.org/x/crypto v0.17.0
gorm.io/driver/sqlite v1.5.4
gorm.io/gorm v1.25.5
2023-04-06 10:36:11 +05:00
)
require (
github.com/jinzhu/inflection v1.0.0 // indirect
github.com/jinzhu/now v1.1.5 // indirect
github.com/mattn/go-sqlite3 v1.14.17 // indirect
github.com/stretchr/testify v1.8.3 // indirect
golang.org/x/sys v0.15.0 // indirect
2023-04-06 10:36:11 +05:00
)