magmise/api/go.mod

23 lines
591 B
Modula-2
Raw Normal View History

2022-09-09 06:10:34 +00:00
module magmise
go 1.19
require (
github.com/go-chi/chi/v5 v5.0.7
github.com/golang-jwt/jwt v3.2.2+incompatible
2022-09-10 13:26:11 +00:00
github.com/gorilla/csrf v1.7.1
github.com/wader/gormstore/v2 v2.0.1
2022-09-09 06:10:34 +00:00
golang.org/x/crypto v0.0.0-20220829220503-c86fa9a7ed90
gorm.io/driver/sqlite v1.3.6
gorm.io/gorm v1.23.8
)
require (
2022-09-10 13:26:11 +00:00
github.com/gorilla/securecookie v1.1.1 // indirect
github.com/gorilla/sessions v1.2.1 // indirect
2022-09-09 06:10:34 +00:00
github.com/jinzhu/inflection v1.0.0 // indirect
github.com/jinzhu/now v1.1.5 // indirect
github.com/mattn/go-sqlite3 v1.14.12 // indirect
2022-09-10 13:26:11 +00:00
github.com/pkg/errors v0.9.1 // indirect
2022-09-09 06:10:34 +00:00
)