mirror of
https://github.com/paralus/paralus.git
synced 2026-05-17 05:47:04 +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
91 lines
3.9 KiB
Modula-2
91 lines
3.9 KiB
Modula-2
module github.com/RafaySystems/rcloud-base/components/usermgmt
|
|
|
|
go 1.17
|
|
|
|
require (
|
|
github.com/DATA-DOG/go-sqlmock v1.5.0
|
|
github.com/RafaySystems/rcloud-base/components/authz v0.0.0-unpublished
|
|
github.com/RafaySystems/rcloud-base/components/common v0.0.0-unpublished
|
|
github.com/crewjam/saml v0.4.6
|
|
github.com/gogo/protobuf v1.3.2
|
|
github.com/google/uuid v1.3.0
|
|
github.com/grpc-ecosystem/grpc-gateway/v2 v2.7.2
|
|
github.com/ory/kratos-client-go v0.8.2-alpha.1
|
|
github.com/spf13/viper v1.10.1
|
|
github.com/uptrace/bun v1.0.20
|
|
github.com/uptrace/bun/dialect/pgdialect v1.0.20
|
|
github.com/uptrace/bun/driver/pgdriver v1.0.20
|
|
github.com/uptrace/bun/extra/bundebug v1.0.20
|
|
google.golang.org/genproto v0.0.0-20211208223120-3a66f561d7aa
|
|
google.golang.org/grpc v1.43.0
|
|
google.golang.org/protobuf v1.27.1
|
|
sigs.k8s.io/controller-runtime v0.11.0
|
|
)
|
|
|
|
require (
|
|
github.com/beevik/etree v1.1.0 // indirect
|
|
github.com/crewjam/httperr v0.2.0 // indirect
|
|
github.com/fatih/color v1.13.0 // indirect
|
|
github.com/fsnotify/fsnotify v1.5.1 // indirect
|
|
github.com/go-logr/logr v1.2.0 // indirect
|
|
github.com/golang-jwt/jwt/v4 v4.1.0 // indirect
|
|
github.com/golang/protobuf v1.5.2 // indirect
|
|
github.com/google/go-cmp v0.5.6 // indirect
|
|
github.com/google/gofuzz v1.1.0 // indirect
|
|
github.com/grpc-ecosystem/grpc-gateway v1.16.0 // indirect
|
|
github.com/hashicorp/hcl v1.0.0 // indirect
|
|
github.com/jinzhu/inflection v1.0.0 // indirect
|
|
github.com/jonboulle/clockwork v0.2.2 // indirect
|
|
github.com/json-iterator/go v1.1.12 // indirect
|
|
github.com/julienschmidt/httprouter v1.3.0 // indirect
|
|
github.com/klauspost/cpuid/v2 v2.0.6 // indirect
|
|
github.com/magiconair/properties v1.8.5 // indirect
|
|
github.com/mattermost/xml-roundtrip-validator v0.1.0 // indirect
|
|
github.com/mattn/go-colorable v0.1.12 // indirect
|
|
github.com/mattn/go-isatty v0.0.14 // indirect
|
|
github.com/mitchellh/mapstructure v1.4.3 // 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 v1.9.4 // indirect
|
|
github.com/pkg/errors v0.9.1 // indirect
|
|
github.com/processout/grpc-go-pool v1.2.1 // indirect
|
|
github.com/russellhaering/goxmldsig v1.1.1 // indirect
|
|
github.com/segmentio/asm v1.1.0 // indirect
|
|
github.com/segmentio/encoding v0.3.2 // indirect
|
|
github.com/speps/go-hashids v2.0.0+incompatible // 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
|
|
github.com/tmthrgd/go-hex v0.0.0-20190904060850-447a3041c3bc // indirect
|
|
github.com/vmihailenco/msgpack/v5 v5.3.5 // indirect
|
|
github.com/vmihailenco/tagparser/v2 v2.0.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/oauth2 v0.0.0-20211104180415-d3ed0bb246c8 // indirect
|
|
golang.org/x/sys v0.0.0-20220114195835-da31bd327af9 // indirect
|
|
golang.org/x/text v0.3.7 // indirect
|
|
google.golang.org/appengine v1.6.7 // indirect
|
|
gopkg.in/inf.v0 v0.9.1 // indirect
|
|
gopkg.in/ini.v1 v1.66.2 // indirect
|
|
gopkg.in/yaml.v2 v2.4.0 // indirect
|
|
k8s.io/apimachinery v0.23.1 // indirect
|
|
k8s.io/klog v1.0.0 // indirect
|
|
k8s.io/klog/v2 v2.30.0 // indirect
|
|
k8s.io/utils v0.0.0-20210930125809-cb0fa318a74b // indirect
|
|
mellium.im/sasl v0.2.1 // indirect
|
|
sigs.k8s.io/json v0.0.0-20211020170558-c049b76a60c6 // indirect
|
|
sigs.k8s.io/kustomize/pseudo/k8s v0.1.0 // indirect
|
|
sigs.k8s.io/structured-merge-diff/v4 v4.2.0 // indirect
|
|
sigs.k8s.io/yaml v1.3.0 // indirect
|
|
)
|
|
|
|
replace (
|
|
github.com/RafaySystems/rcloud-base/components/authz v0.0.0-unpublished => ../authz/
|
|
github.com/RafaySystems/rcloud-base/components/common v0.0.0-unpublished => ../common/
|
|
)
|