From 6734c4408ffb67841115ca17d14d879043a3343e Mon Sep 17 00:00:00 2001 From: Gabriel Arakaki Giovanini Date: Sat, 10 Dec 2022 23:36:39 +0100 Subject: feat: Initial set up for static single sign on This is a simple project to have a static site behind single sign on. --- go.mod | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 go.mod (limited to 'go.mod') diff --git a/go.mod b/go.mod new file mode 100644 index 0000000..e669d18 --- /dev/null +++ b/go.mod @@ -0,0 +1,28 @@ +module git.sr.ht/~gabrielgio/s4o + +go 1.18 + +require ( + github.com/fasthttp/router v1.4.14 + github.com/spf13/pflag v1.0.5 + github.com/valyala/fasthttp v1.43.0 + github.com/zitadel/oidc v1.12.0 +) + +require ( + github.com/andybalholm/brotli v1.0.4 // indirect + github.com/golang/protobuf v1.4.2 // indirect + github.com/google/uuid v1.3.0 // indirect + github.com/gorilla/schema v1.2.0 // indirect + github.com/gorilla/securecookie v1.1.1 // indirect + github.com/klauspost/compress v1.15.12 // indirect + github.com/savsgio/gotils v0.0.0-20220530130905-52f3993e8d6d // indirect + github.com/valyala/bytebufferpool v1.0.0 // indirect + golang.org/x/crypto v0.0.0-20220427172511-eb4f295cb31f // indirect + golang.org/x/net v0.0.0-20220906165146-f3363e06e74c // indirect + golang.org/x/oauth2 v0.0.0-20200902213428-5d25da1a8d43 // indirect + golang.org/x/text v0.4.0 // indirect + google.golang.org/appengine v1.6.6 // indirect + google.golang.org/protobuf v1.25.0 // indirect + gopkg.in/square/go-jose.v2 v2.6.0 // indirect +) -- cgit v1.2.3