aboutsummaryrefslogtreecommitdiff
path: root/go.mod
diff options
context:
space:
mode:
authorGabriel Arakaki Giovanini <mail@gabrielgio.me>2023-08-05 19:26:29 +0200
committerGabriel Arakaki Giovanini <mail@gabrielgio.me>2023-08-05 19:26:29 +0200
commit5168a9476f0e83264ecafc85bc9145e8bdcbb8dc (patch)
tree5cd04e84f8aa427d274e16dd8cf507ff48468e07 /go.mod
parent24c121a9ef229870f54de487de01c15a15ebbff1 (diff)
downloadlens-5168a9476f0e83264ecafc85bc9145e8bdcbb8dc.tar.gz
lens-5168a9476f0e83264ecafc85bc9145e8bdcbb8dc.tar.bz2
lens-5168a9476f0e83264ecafc85bc9145e8bdcbb8dc.zip
ref: Move net/http
I was young and naive, fasthttp does not fit my needs and make development slower. I'll move to net/http since it has a wider support and will spare some time on implementation detail things (like CSRF). It will allow me to reduce a bit of the code since there may be lib for handling cookie encryption and auth in general.
Diffstat (limited to 'go.mod')
-rw-r--r--go.mod6
1 files changed, 1 insertions, 5 deletions
diff --git a/go.mod b/go.mod
index 8b4538d..91dd7fa 100644
--- a/go.mod
+++ b/go.mod
@@ -4,12 +4,11 @@ go 1.19
require (
github.com/barasher/go-exiftool v1.10.0
- github.com/fasthttp/router v1.4.19
github.com/google/go-cmp v0.5.9
+ github.com/gorilla/mux v1.8.0
github.com/h2non/bimg v1.1.9
github.com/sirupsen/logrus v1.9.2
github.com/spf13/pflag v1.0.5
- github.com/valyala/fasthttp v1.47.0
github.com/valyala/quicktemplate v1.7.0
golang.org/x/crypto v0.8.0
gorm.io/driver/mysql v1.5.1
@@ -20,16 +19,13 @@ require (
)
require (
- github.com/andybalholm/brotli v1.0.5 // indirect
github.com/go-sql-driver/mysql v1.7.1 // indirect
github.com/jackc/pgpassfile v1.0.0 // indirect
github.com/jackc/pgservicefile v0.0.0-20221227161230-091c0ba34f0a // indirect
github.com/jackc/pgx/v5 v5.3.1 // indirect
github.com/jinzhu/inflection v1.0.0 // indirect
github.com/jinzhu/now v1.1.5 // indirect
- github.com/klauspost/compress v1.16.5 // indirect
github.com/mattn/go-sqlite3 v1.14.16 // indirect
- github.com/savsgio/gotils v0.0.0-20230208104028-c358bd845dee // indirect
github.com/valyala/bytebufferpool v1.0.0 // indirect
golang.org/x/mod v0.10.0 // indirect
golang.org/x/sys v0.8.0 // indirect