53 lines
2.1 KiB
Modula-2
53 lines
2.1 KiB
Modula-2
module libre.sh/scim
|
|
|
|
go 1.18
|
|
|
|
require (
|
|
github.com/Nerzal/gocloak/v11 v11.2.0
|
|
github.com/go-playground/validator/v10 v10.11.0
|
|
github.com/go-resty/resty/v2 v2.7.0
|
|
github.com/google/uuid v1.3.0
|
|
github.com/pterm/pterm v0.12.41
|
|
github.com/spf13/cobra v1.4.0
|
|
github.com/spf13/viper v1.12.0
|
|
github.com/tidwall/gjson v1.14.1
|
|
)
|
|
|
|
require (
|
|
github.com/atomicgo/cursor v0.0.1 // indirect
|
|
github.com/fsnotify/fsnotify v1.5.4 // indirect
|
|
github.com/go-playground/locales v0.14.0 // indirect
|
|
github.com/go-playground/universal-translator v0.18.0 // indirect
|
|
github.com/golang-jwt/jwt/v4 v4.4.1 // indirect
|
|
github.com/gookit/color v1.5.0 // indirect
|
|
github.com/hashicorp/hcl v1.0.0 // indirect
|
|
github.com/inconshreveable/mousetrap v1.0.0 // indirect
|
|
github.com/leodido/go-urn v1.2.1 // indirect
|
|
github.com/magiconair/properties v1.8.6 // indirect
|
|
github.com/mattn/go-runewidth v0.0.13 // indirect
|
|
github.com/mitchellh/mapstructure v1.5.0 // indirect
|
|
github.com/opentracing/opentracing-go v1.2.0 // indirect
|
|
github.com/pelletier/go-toml v1.9.5 // indirect
|
|
github.com/pelletier/go-toml/v2 v2.0.1 // indirect
|
|
github.com/pkg/errors v0.9.1 // indirect
|
|
github.com/rivo/uniseg v0.2.0 // indirect
|
|
github.com/segmentio/ksuid v1.0.4 // indirect
|
|
github.com/spf13/afero v1.8.2 // indirect
|
|
github.com/spf13/cast v1.5.0 // indirect
|
|
github.com/spf13/jwalterweatherman v1.1.0 // indirect
|
|
github.com/spf13/pflag v1.0.5 // indirect
|
|
github.com/subosito/gotenv v1.3.0 // indirect
|
|
github.com/tidwall/match v1.1.1 // indirect
|
|
github.com/tidwall/pretty v1.2.0 // indirect
|
|
github.com/xo/terminfo v0.0.0-20210125001918-ca9a967f8778 // indirect
|
|
golang.org/x/crypto v0.0.0-20220427172511-eb4f295cb31f // indirect
|
|
golang.org/x/net v0.0.0-20220520000938-2e3eb7b945c2 // indirect
|
|
golang.org/x/sys v0.0.0-20220520151302-bc2c85ada10a // indirect
|
|
golang.org/x/term v0.0.0-20210927222741-03fcf44c2211 // indirect
|
|
golang.org/x/text v0.3.7 // indirect
|
|
gopkg.in/ini.v1 v1.66.4 // indirect
|
|
gopkg.in/yaml.v2 v2.4.0 // indirect
|
|
gopkg.in/yaml.v3 v3.0.0 // indirect
|
|
)
|
|
|
|
replace github.com/Nerzal/gocloak/v11 => github.com/hrenard/gocloak/v11 v11.0.0-20220609172718-9807e38ec17b
|