You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
67 lines
2.6 KiB
Modula-2
67 lines
2.6 KiB
Modula-2
module cls-server
|
|
|
|
go 1.23.7
|
|
|
|
require (
|
|
github.com/appleboy/gin-jwt/v2 v2.9.1
|
|
github.com/cenkalti/backoff/v4 v4.2.0
|
|
github.com/gin-gonic/gin v1.8.2
|
|
github.com/go-sql-driver/mysql v1.6.0
|
|
github.com/golang-jwt/jwt/v4 v4.4.3
|
|
github.com/json-iterator/go v1.1.12
|
|
github.com/mojocn/base64Captcha v1.3.8
|
|
github.com/redis/go-redis/v9 v9.7.1
|
|
github.com/sirupsen/logrus v1.4.2
|
|
github.com/spf13/viper v1.15.0
|
|
github.com/urfave/cli/v2 v2.27.6
|
|
go.uber.org/fx v1.19.1
|
|
go.uber.org/zap v1.27.0
|
|
golang.org/x/crypto v0.36.0
|
|
xorm.io/builder v0.3.13
|
|
xorm.io/xorm v1.3.2
|
|
)
|
|
|
|
require (
|
|
github.com/cespare/xxhash/v2 v2.3.0 // indirect
|
|
github.com/cpuguy83/go-md2man/v2 v2.0.6 // indirect
|
|
github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect
|
|
github.com/fsnotify/fsnotify v1.8.0 // indirect
|
|
github.com/gabriel-vasile/mimetype v1.4.8 // indirect
|
|
github.com/gin-contrib/sse v1.0.0 // indirect
|
|
github.com/go-playground/locales v0.14.1 // indirect
|
|
github.com/go-playground/universal-translator v0.18.1 // indirect
|
|
github.com/go-playground/validator/v10 v10.25.0 // indirect
|
|
github.com/goccy/go-json v0.10.5 // indirect
|
|
github.com/golang/freetype v0.0.0-20170609003504-e2365dfdc4a0 // indirect
|
|
github.com/golang/snappy v1.0.0 // indirect
|
|
github.com/hashicorp/hcl v1.0.0 // indirect
|
|
github.com/konsorten/go-windows-terminal-sequences v1.0.2 // indirect
|
|
github.com/leodido/go-urn v1.4.0 // indirect
|
|
github.com/magiconair/properties v1.8.9 // indirect
|
|
github.com/mattn/go-isatty v0.0.20 // 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/russross/blackfriday/v2 v2.1.0 // indirect
|
|
github.com/spf13/afero v1.14.0 // indirect
|
|
github.com/spf13/cast v1.7.1 // indirect
|
|
github.com/spf13/jwalterweatherman v1.1.0 // indirect
|
|
github.com/spf13/pflag v1.0.6 // indirect
|
|
github.com/subosito/gotenv v1.6.0 // indirect
|
|
github.com/syndtr/goleveldb v1.0.0 // indirect
|
|
github.com/ugorji/go/codec v1.2.12 // indirect
|
|
github.com/xrash/smetrics v0.0.0-20240521201337-686a1a2994c1 // indirect
|
|
go.uber.org/atomic v1.11.0 // indirect
|
|
go.uber.org/dig v1.18.1 // indirect
|
|
go.uber.org/multierr v1.11.0 // indirect
|
|
golang.org/x/image v0.25.0 // indirect
|
|
golang.org/x/net v0.37.0 // indirect
|
|
golang.org/x/sys v0.31.0 // indirect
|
|
golang.org/x/text v0.23.0 // indirect
|
|
google.golang.org/protobuf v1.36.6 // indirect
|
|
gopkg.in/ini.v1 v1.67.0 // indirect
|
|
gopkg.in/yaml.v2 v2.4.0 // indirect
|
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
|
)
|