mirror of
https://github.com/pocket-id/pocket-id.git
synced 2025-12-11 07:32:57 +03:00
65 lines
2.5 KiB
Modula-2
65 lines
2.5 KiB
Modula-2
module github.com/stonith404/pocket-id/backend
|
|
|
|
go 1.23
|
|
|
|
require (
|
|
github.com/caarlos0/env/v11 v11.2.2
|
|
github.com/fxamacker/cbor/v2 v2.7.0
|
|
github.com/gin-contrib/cors v1.7.2
|
|
github.com/gin-gonic/gin v1.10.0
|
|
github.com/go-co-op/gocron/v2 v2.11.0
|
|
github.com/go-playground/validator/v10 v10.22.0
|
|
github.com/go-webauthn/webauthn v0.11.1
|
|
github.com/golang-jwt/jwt/v5 v5.2.1
|
|
github.com/golang-migrate/migrate/v4 v4.17.1
|
|
github.com/google/uuid v1.6.0
|
|
github.com/joho/godotenv v1.5.1
|
|
github.com/mileusna/useragent v1.3.4
|
|
golang.org/x/crypto v0.26.0
|
|
golang.org/x/time v0.6.0
|
|
gorm.io/driver/sqlite v1.5.6
|
|
gorm.io/gorm v1.25.11
|
|
)
|
|
|
|
require (
|
|
github.com/bytedance/sonic v1.12.1 // indirect
|
|
github.com/bytedance/sonic/loader v0.2.0 // indirect
|
|
github.com/cloudwego/base64x v0.1.4 // indirect
|
|
github.com/cloudwego/iasm v0.2.0 // indirect
|
|
github.com/gabriel-vasile/mimetype v1.4.5 // indirect
|
|
github.com/gin-contrib/sse v0.1.0 // indirect
|
|
github.com/go-playground/locales v0.14.1 // indirect
|
|
github.com/go-playground/universal-translator v0.18.1 // indirect
|
|
github.com/go-webauthn/x v0.1.12 // indirect
|
|
github.com/goccy/go-json v0.10.3 // indirect
|
|
github.com/google/go-tpm v0.9.1 // indirect
|
|
github.com/hashicorp/errwrap v1.1.0 // indirect
|
|
github.com/hashicorp/go-multierror v1.1.1 // indirect
|
|
github.com/jinzhu/inflection v1.0.0 // indirect
|
|
github.com/jinzhu/now v1.1.5 // indirect
|
|
github.com/jonboulle/clockwork v0.4.0 // indirect
|
|
github.com/json-iterator/go v1.1.12 // indirect
|
|
github.com/klauspost/cpuid/v2 v2.2.8 // indirect
|
|
github.com/kr/pretty v0.3.1 // indirect
|
|
github.com/leodido/go-urn v1.4.0 // indirect
|
|
github.com/mattn/go-isatty v0.0.20 // indirect
|
|
github.com/mattn/go-sqlite3 v1.14.22 // indirect
|
|
github.com/mitchellh/mapstructure v1.5.0 // indirect
|
|
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
|
|
github.com/modern-go/reflect2 v1.0.2 // indirect
|
|
github.com/pelletier/go-toml/v2 v2.2.2 // indirect
|
|
github.com/robfig/cron/v3 v3.0.1 // indirect
|
|
github.com/rogpeppe/go-internal v1.11.0 // indirect
|
|
github.com/twitchyliquid64/golang-asm v0.15.1 // indirect
|
|
github.com/ugorji/go/codec v1.2.12 // indirect
|
|
github.com/x448/float16 v0.8.4 // indirect
|
|
go.uber.org/atomic v1.11.0 // indirect
|
|
golang.org/x/arch v0.9.0 // indirect
|
|
golang.org/x/exp v0.0.0-20240719175910-8a7402abbf56 // indirect
|
|
golang.org/x/net v0.27.0 // indirect
|
|
golang.org/x/sys v0.23.0 // indirect
|
|
golang.org/x/text v0.17.0 // indirect
|
|
google.golang.org/protobuf v1.34.2 // indirect
|
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
|
)
|