Make output go to test logger so that go test -v will give useful output on a failure Remove dependence on `oathtool` Remove dependence on `ls` Wait on killing the running glauth instance so subsequent tests don't fail Wait for glauth to provide authentication error instead of waiting an arbitrary amount of time
60 lines
2.5 KiB
AMPL
60 lines
2.5 KiB
AMPL
module github.com/glauth/glauth/v2
|
|
|
|
go 1.25
|
|
|
|
require (
|
|
github.com/BurntSushi/toml v1.3.2
|
|
github.com/GeertJohan/yubigo v0.0.0-20190917122436-175bc097e60e
|
|
github.com/arl/statsviz v0.6.0
|
|
github.com/docopt/docopt-go v0.0.0-20180111231733-ee0de3bc6815
|
|
github.com/fsnotify/fsnotify v1.7.0
|
|
github.com/glauth/ldap v0.0.0-20240419171521-1f14f5c1b4ad
|
|
github.com/jinzhu/copier v0.4.0
|
|
github.com/pquerna/otp v1.4.0
|
|
github.com/prometheus/client_golang v1.18.0
|
|
github.com/prometheus/client_model v0.5.0
|
|
github.com/rs/zerolog v1.31.0
|
|
github.com/uptrace/opentelemetry-go-extra/otelsql v0.2.3
|
|
github.com/yaegashi/msgraph.go v0.1.4
|
|
go.opentelemetry.io/contrib/propagators/jaeger v1.21.1
|
|
go.opentelemetry.io/otel v1.21.0
|
|
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.21.0
|
|
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.21.0
|
|
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.21.0
|
|
go.opentelemetry.io/otel/exporters/stdout/stdouttrace v1.21.0
|
|
go.opentelemetry.io/otel/sdk v1.21.0
|
|
go.opentelemetry.io/otel/trace v1.21.0
|
|
go.uber.org/mock v0.4.0
|
|
golang.org/x/crypto v0.18.0
|
|
gopkg.in/amz.v3 v3.0.0-20201001071545-24fc1eceb27b
|
|
)
|
|
|
|
require (
|
|
github.com/beorn7/perks v1.0.1 // indirect
|
|
github.com/boombuler/barcode v1.0.1-0.20190219062509-6c824513bacc // indirect
|
|
github.com/cenkalti/backoff/v4 v4.2.1 // indirect
|
|
github.com/cespare/xxhash/v2 v2.2.0 // indirect
|
|
github.com/go-asn1-ber/asn1-ber v1.5.5 // indirect
|
|
github.com/go-logr/logr v1.3.0 // indirect
|
|
github.com/go-logr/stdr v1.2.2 // indirect
|
|
github.com/golang/protobuf v1.5.3 // indirect
|
|
github.com/gorilla/websocket v1.5.0 // indirect
|
|
github.com/grpc-ecosystem/grpc-gateway/v2 v2.16.0 // indirect
|
|
github.com/mattn/go-colorable v0.1.13 // indirect
|
|
github.com/mattn/go-isatty v0.0.19 // indirect
|
|
github.com/matttproud/golang_protobuf_extensions/v2 v2.0.0 // indirect
|
|
github.com/prometheus/common v0.45.0 // indirect
|
|
github.com/prometheus/procfs v0.12.0 // indirect
|
|
github.com/rickb777/date v1.12.4 // indirect
|
|
github.com/rickb777/plural v1.2.0 // indirect
|
|
go.opentelemetry.io/otel/metric v1.21.0 // indirect
|
|
go.opentelemetry.io/proto/otlp v1.0.0 // indirect
|
|
golang.org/x/net v0.17.0 // indirect
|
|
golang.org/x/sys v0.16.0 // indirect
|
|
golang.org/x/text v0.14.0 // indirect
|
|
google.golang.org/genproto/googleapis/api v0.0.0-20230822172742-b8732ec3820d // indirect
|
|
google.golang.org/genproto/googleapis/rpc v0.0.0-20230822172742-b8732ec3820d // indirect
|
|
google.golang.org/grpc v1.59.0 // indirect
|
|
google.golang.org/protobuf v1.31.0 // indirect
|
|
)
|