mirror of
https://github.com/paralus/paralus.git
synced 2026-03-05 18:40:18 +00:00
* Update dependencies from authz * authz: fix log import path * Authz related creation steps * Fix typo: Namesapce -> Namespace * Add tests for role creation interaction with authz * Switch to using names for policy and group creation in authz * Group creation not udpates casbin db * Fix reading db address from env * Tiny typo fix in readme * Simplify error handling in usermgmt server * Rework test setup * Fix all current tests * Complete authz integration * Drop unnecessary dependency on adminsrv in usermgmt
64 lines
2.5 KiB
Modula-2
64 lines
2.5 KiB
Modula-2
module github.com/RafaySystems/rcloud-base/components/authz
|
|
|
|
go 1.17
|
|
|
|
require (
|
|
github.com/RafaySystems/rcloud-base/components/common v0.0.0-unpublished
|
|
google.golang.org/grpc v1.43.0
|
|
)
|
|
|
|
require (
|
|
github.com/casbin/casbin/v2 v2.40.6
|
|
github.com/casbin/gorm-adapter/v3 v3.4.6
|
|
github.com/gogo/protobuf v1.3.2
|
|
github.com/spf13/viper v1.10.1
|
|
google.golang.org/protobuf v1.27.1
|
|
gorm.io/driver/postgres v1.2.2
|
|
gorm.io/gorm v1.22.5
|
|
)
|
|
|
|
require (
|
|
github.com/Knetic/govaluate v3.0.1-0.20171022003610-9aa49832a739+incompatible // indirect
|
|
github.com/denisenkom/go-mssqldb v0.11.0 // indirect
|
|
github.com/fsnotify/fsnotify v1.5.1 // indirect
|
|
github.com/go-sql-driver/mysql v1.6.0 // indirect
|
|
github.com/golang-sql/civil v0.0.0-20190719163853-cb61b32ac6fe // indirect
|
|
github.com/golang/protobuf v1.5.2 // indirect
|
|
github.com/hashicorp/hcl v1.0.0 // indirect
|
|
github.com/jackc/chunkreader/v2 v2.0.1 // indirect
|
|
github.com/jackc/pgconn v1.10.0 // indirect
|
|
github.com/jackc/pgio v1.0.0 // indirect
|
|
github.com/jackc/pgpassfile v1.0.0 // indirect
|
|
github.com/jackc/pgproto3/v2 v2.1.1 // indirect
|
|
github.com/jackc/pgservicefile v0.0.0-20200714003250-2b9c44734f2b // indirect
|
|
github.com/jackc/pgtype v1.8.1 // indirect
|
|
github.com/jackc/pgx/v4 v4.13.0 // indirect
|
|
github.com/jinzhu/inflection v1.0.0 // indirect
|
|
github.com/jinzhu/now v1.1.4 // indirect
|
|
github.com/kr/pretty v0.2.0 // indirect
|
|
github.com/magiconair/properties v1.8.5 // indirect
|
|
github.com/mitchellh/mapstructure v1.4.3 // indirect
|
|
github.com/pelletier/go-toml v1.9.4 // indirect
|
|
github.com/spf13/afero v1.6.0 // indirect
|
|
github.com/spf13/cast v1.4.1 // indirect
|
|
github.com/spf13/jwalterweatherman v1.1.0 // indirect
|
|
github.com/spf13/pflag v1.0.5 // indirect
|
|
github.com/subosito/gotenv v1.2.0 // indirect
|
|
go.uber.org/atomic v1.7.0 // indirect
|
|
go.uber.org/multierr v1.6.0 // indirect
|
|
go.uber.org/zap v1.19.1 // indirect
|
|
golang.org/x/crypto v0.0.0-20220126234351-aa10faf2a1f8 // indirect
|
|
golang.org/x/net v0.0.0-20211209124913-491a49abca63 // indirect
|
|
golang.org/x/sys v0.0.0-20220114195835-da31bd327af9 // indirect
|
|
golang.org/x/text v0.3.7 // indirect
|
|
google.golang.org/genproto v0.0.0-20211208223120-3a66f561d7aa // indirect
|
|
gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15 // indirect
|
|
gopkg.in/ini.v1 v1.66.2 // indirect
|
|
gopkg.in/yaml.v2 v2.4.0 // indirect
|
|
gorm.io/driver/mysql v1.1.2 // indirect
|
|
gorm.io/driver/sqlserver v1.2.1 // indirect
|
|
gorm.io/plugin/dbresolver v1.1.0 // indirect
|
|
)
|
|
|
|
replace github.com/RafaySystems/rcloud-base/components/common v0.0.0-unpublished => ../common/
|