55 lines
2.0 KiB
Modula-2
55 lines
2.0 KiB
Modula-2
module uauth
|
|
|
|
go 1.20
|
|
|
|
require (
|
|
gitea.com/taozitaozi/gredis v0.0.0-20240131032054-b02845ce1e9d
|
|
github.com/glebarez/sqlite v1.11.0
|
|
github.com/go-redis/redis/v8 v8.11.5
|
|
github.com/golang-jwt/jwt/v5 v5.2.1
|
|
github.com/google/uuid v1.6.0
|
|
github.com/hashicorp/golang-lru/v2 v2.0.7
|
|
github.com/jedib0t/go-pretty/v6 v6.6.1
|
|
github.com/loveuer/nf v0.2.12
|
|
github.com/spf13/cobra v1.8.1
|
|
golang.org/x/crypto v0.26.0
|
|
golang.org/x/oauth2 v0.23.0
|
|
gorm.io/driver/mysql v1.5.7
|
|
gorm.io/driver/postgres v1.5.9
|
|
gorm.io/gorm v1.25.12
|
|
)
|
|
|
|
require (
|
|
github.com/cespare/xxhash/v2 v2.2.0 // indirect
|
|
github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect
|
|
github.com/dustin/go-humanize v1.0.1 // indirect
|
|
github.com/fatih/color v1.17.0 // indirect
|
|
github.com/glebarez/go-sqlite v1.21.2 // indirect
|
|
github.com/go-sql-driver/mysql v1.7.0 // indirect
|
|
github.com/google/go-cmp v0.6.0 // indirect
|
|
github.com/inconshreveable/mousetrap v1.1.0 // indirect
|
|
github.com/jackc/pgpassfile v1.0.0 // indirect
|
|
github.com/jackc/pgservicefile v0.0.0-20221227161230-091c0ba34f0a // indirect
|
|
github.com/jackc/pgx/v5 v5.5.5 // indirect
|
|
github.com/jackc/puddle/v2 v2.2.1 // indirect
|
|
github.com/jinzhu/inflection v1.0.0 // indirect
|
|
github.com/jinzhu/now v1.1.5 // indirect
|
|
github.com/mattn/go-colorable v0.1.13 // indirect
|
|
github.com/mattn/go-isatty v0.0.20 // indirect
|
|
github.com/mattn/go-runewidth v0.0.15 // indirect
|
|
github.com/onsi/gomega v1.27.6 // indirect
|
|
github.com/remyoudompheng/bigfft v0.0.0-20230129092748-24d4a6f8daec // indirect
|
|
github.com/rivo/uniseg v0.2.0 // indirect
|
|
github.com/sirupsen/logrus v1.9.2 // indirect
|
|
github.com/spf13/pflag v1.0.5 // indirect
|
|
github.com/stretchr/testify v1.9.0 // indirect
|
|
golang.org/x/net v0.28.0 // indirect
|
|
golang.org/x/sync v0.8.0 // indirect
|
|
golang.org/x/sys v0.23.0 // indirect
|
|
golang.org/x/text v0.17.0 // indirect
|
|
modernc.org/libc v1.22.5 // indirect
|
|
modernc.org/mathutil v1.5.0 // indirect
|
|
modernc.org/memory v1.5.0 // indirect
|
|
modernc.org/sqlite v1.23.1 // indirect
|
|
)
|