aboutsummaryrefslogtreecommitdiff
path: root/go.mod
diff options
context:
space:
mode:
authorGabriel Arakaki Giovanini <mail@gabrielgio.me>2022-12-10 23:36:39 +0100
committerGabriel Arakaki Giovanini <mail@gabrielgio.me>2022-12-11 00:58:31 +0100
commit6734c4408ffb67841115ca17d14d879043a3343e (patch)
treec1cdb11e698a71911dea63e9f01e34042662396d /go.mod
downloads4o-6734c4408ffb67841115ca17d14d879043a3343e.tar.gz
s4o-6734c4408ffb67841115ca17d14d879043a3343e.tar.bz2
s4o-6734c4408ffb67841115ca17d14d879043a3343e.zip
feat: Initial set up for static single sign on
This is a simple project to have a static site behind single sign on.
Diffstat (limited to 'go.mod')
-rw-r--r--go.mod28
1 files changed, 28 insertions, 0 deletions
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
+)