2025-06-06 07:42:55 +00:00
|
|
|
module app/shelfly
|
|
|
|
|
|
2025-06-17 20:05:00 +00:00
|
|
|
go 1.24.2
|
|
|
|
|
|
2025-06-06 07:42:55 +00:00
|
|
|
require (
|
|
|
|
|
github.com/golang-jwt/jwt/v5 v5.2.1
|
|
|
|
|
github.com/gorilla/mux v1.8.1
|
2025-06-18 14:01:09 +00:00
|
|
|
gorm.io/gorm v1.25.12
|
2025-06-06 09:55:54 +00:00
|
|
|
gorm.io/plugin/dbresolver v1.5.3
|
2025-06-06 07:42:55 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
|
|
require (
|
|
|
|
|
filippo.io/edwards25519 v1.1.0 // indirect
|
|
|
|
|
github.com/go-sql-driver/mysql v1.8.1 // indirect
|
|
|
|
|
github.com/google/uuid v1.6.0 // indirect
|
|
|
|
|
github.com/mattn/go-sqlite3 v1.14.22 // indirect
|
2025-06-18 14:01:09 +00:00
|
|
|
golang.org/x/mod v0.22.0 // indirect
|
|
|
|
|
golang.org/x/sync v0.10.0 // indirect
|
|
|
|
|
golang.org/x/tools v0.28.0 // indirect
|
2025-06-06 07:42:55 +00:00
|
|
|
gorm.io/datatypes v1.2.5 // indirect
|
|
|
|
|
gorm.io/hints v1.1.2 // indirect
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
require (
|
|
|
|
|
github.com/golang-jwt/jwt v3.2.2+incompatible
|
2025-06-18 14:01:09 +00:00
|
|
|
github.com/huin/goupnp v1.3.0
|
|
|
|
|
github.com/jackpal/go-nat-pmp v1.0.2
|
2025-06-06 07:42:55 +00:00
|
|
|
github.com/jinzhu/inflection v1.0.0 // indirect
|
|
|
|
|
github.com/jinzhu/now v1.1.5 // indirect
|
2025-06-09 14:13:32 +00:00
|
|
|
github.com/joho/godotenv v1.5.1
|
2025-06-18 14:01:09 +00:00
|
|
|
golang.org/x/crypto v0.31.0
|
|
|
|
|
golang.org/x/text v0.21.0 // indirect
|
2025-06-06 09:55:54 +00:00
|
|
|
gorm.io/driver/mysql v1.5.7 // indirect
|
2025-06-06 07:42:55 +00:00
|
|
|
gorm.io/driver/sqlite v1.5.7
|
|
|
|
|
gorm.io/gen v0.3.26
|
|
|
|
|
)
|