mirror of
https://github.com/pocket-id/pocket-id.git
synced 2025-12-07 09:13:21 +03:00
75 lines
3.0 KiB
Modula-2
75 lines
3.0 KiB
Modula-2
module github.com/pocket-id/pocket-id/backend
|
|
|
|
go 1.23.1
|
|
|
|
require (
|
|
github.com/caarlos0/env/v11 v11.3.1
|
|
github.com/disintegration/imaging v1.6.2
|
|
github.com/fxamacker/cbor/v2 v2.7.0
|
|
github.com/gin-gonic/gin v1.10.0
|
|
github.com/go-co-op/gocron/v2 v2.15.0
|
|
github.com/go-ldap/ldap/v3 v3.4.10
|
|
github.com/go-playground/validator/v10 v10.24.0
|
|
github.com/go-webauthn/webauthn v0.11.2
|
|
github.com/golang-jwt/jwt/v5 v5.2.1
|
|
github.com/golang-migrate/migrate/v4 v4.18.2
|
|
github.com/google/uuid v1.6.0
|
|
github.com/joho/godotenv v1.5.1
|
|
github.com/mileusna/useragent v1.3.5
|
|
github.com/oschwald/maxminddb-golang/v2 v2.0.0-beta.2
|
|
golang.org/x/crypto v0.32.0
|
|
golang.org/x/image v0.24.0
|
|
golang.org/x/time v0.9.0
|
|
gorm.io/driver/postgres v1.5.11
|
|
gorm.io/driver/sqlite v1.5.7
|
|
gorm.io/gorm v1.25.12
|
|
)
|
|
|
|
require (
|
|
github.com/Azure/go-ntlmssp v0.0.0-20221128193559-754e69321358 // indirect
|
|
github.com/bytedance/sonic v1.12.8 // indirect
|
|
github.com/bytedance/sonic/loader v0.2.3 // indirect
|
|
github.com/cloudwego/base64x v0.1.5 // indirect
|
|
github.com/gabriel-vasile/mimetype v1.4.8 // indirect
|
|
github.com/gin-contrib/sse v1.0.0 // indirect
|
|
github.com/go-asn1-ber/asn1-ber v1.5.7 // 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.16 // indirect
|
|
github.com/goccy/go-json v0.10.4 // indirect
|
|
github.com/google/go-tpm v0.9.3 // indirect
|
|
github.com/hashicorp/errwrap v1.1.0 // indirect
|
|
github.com/hashicorp/go-multierror v1.1.1 // indirect
|
|
github.com/jackc/pgpassfile v1.0.0 // indirect
|
|
github.com/jackc/pgservicefile v0.0.0-20240606120523-5a60cdf6a761 // indirect
|
|
github.com/jackc/pgx/v5 v5.7.2 // indirect
|
|
github.com/jackc/puddle/v2 v2.2.2 // indirect
|
|
github.com/jinzhu/inflection v1.0.0 // indirect
|
|
github.com/jinzhu/now v1.1.5 // indirect
|
|
github.com/jonboulle/clockwork v0.5.0 // indirect
|
|
github.com/json-iterator/go v1.1.12 // indirect
|
|
github.com/klauspost/cpuid/v2 v2.2.9 // indirect
|
|
github.com/kr/pretty v0.3.1 // indirect
|
|
github.com/leodido/go-urn v1.4.0 // indirect
|
|
github.com/lib/pq v1.10.9 // indirect
|
|
github.com/mattn/go-isatty v0.0.20 // indirect
|
|
github.com/mattn/go-sqlite3 v1.14.24 // 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.3 // indirect
|
|
github.com/robfig/cron/v3 v3.0.1 // 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.13.0 // indirect
|
|
golang.org/x/exp v0.0.0-20250106191152-7588d65b2ba8 // indirect
|
|
golang.org/x/net v0.34.0 // indirect
|
|
golang.org/x/sync v0.11.0 // indirect
|
|
golang.org/x/sys v0.29.0 // indirect
|
|
golang.org/x/text v0.22.0 // indirect
|
|
google.golang.org/protobuf v1.36.4 // indirect
|
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
|
)
|