ldap-1-backend/go.mod

46 lines
1.6 KiB
Modula-2
Raw Normal View History

2022-05-29 10:06:21 +08:00
module github.com/eryajf/go-ldap-admin
2022-05-18 17:57:03 +08:00
go 1.17
require (
github.com/appleboy/gin-jwt/v2 v2.6.4
github.com/casbin/casbin/v2 v2.22.0
github.com/casbin/gorm-adapter/v3 v3.1.0
github.com/fsnotify/fsnotify v1.4.9
github.com/gin-gonic/gin v1.6.3
github.com/go-ldap/ldap/v3 v3.4.2
2022-05-31 14:08:56 +08:00
github.com/go-playground/locales v0.14.0
github.com/go-playground/universal-translator v0.18.0
github.com/go-playground/validator/v10 v10.9.0
2022-05-18 17:57:03 +08:00
github.com/juju/ratelimit v1.0.1
github.com/patrickmn/go-cache v2.1.0+incompatible
github.com/spf13/viper v1.7.1
github.com/thoas/go-funk v0.7.0
2022-05-31 14:08:56 +08:00
go.uber.org/zap v1.19.1
2022-05-18 17:57:03 +08:00
gopkg.in/gomail.v2 v2.0.0-20160411212932-81ebce5c23df
gopkg.in/natefinch/lumberjack.v2 v2.0.0
gorm.io/driver/mysql v1.0.4
gorm.io/gorm v1.20.12
)
require (
github.com/denisenkom/go-mssqldb v0.9.0 // indirect
github.com/golang/protobuf v1.4.3 // indirect
github.com/jackc/pgproto3/v2 v2.0.7 // indirect
github.com/json-iterator/go v1.1.10 // indirect
github.com/magiconair/properties v1.8.4 // indirect
github.com/mitchellh/mapstructure v1.4.1 // indirect
github.com/pelletier/go-toml v1.8.1 // indirect
github.com/spf13/afero v1.5.1 // indirect
github.com/spf13/cast v1.3.1 // indirect
github.com/spf13/jwalterweatherman v1.1.0 // indirect
github.com/spf13/pflag v1.0.5 // indirect
2022-05-31 14:08:56 +08:00
github.com/ugorji/go v1.2.3 // indirect
2022-05-18 17:57:03 +08:00
google.golang.org/protobuf v1.25.0 // indirect
gopkg.in/alexcesaro/quotedprintable.v3 v3.0.0-20150716171945-2caba252f4dc // indirect
gopkg.in/ini.v1 v1.62.0 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
gorm.io/driver/postgres v1.0.7 // indirect
gorm.io/driver/sqlserver v1.0.6 // indirect
)