aboutsummaryrefslogtreecommitdiff
path: root/go.mod
diff options
context:
space:
mode:
authorMitchell Riedstra <mitch@riedstra.dev>2022-12-03 13:38:05 -0500
committerMitchell Riedstra <mitch@riedstra.dev>2022-12-03 13:39:47 -0500
commit10c60b3c9ba2c17419534cf4089328a66568e4f1 (patch)
tree33e6ecedfc3dec7d96488878291179c8a593e779 /go.mod
parentd6f60ce24e123ee83b73f6c9dbe8c4b9af5c629e (diff)
downloadgo-website-10c60b3c9ba2c17419534cf4089328a66568e4f1.tar.gz
go-website-10c60b3c9ba2c17419534cf4089328a66568e4f1.tar.xz
Add a couple handlers to serve up JSON and markdown
Diffstat (limited to 'go.mod')
-rw-r--r--go.mod12
1 files changed, 7 insertions, 5 deletions
diff --git a/go.mod b/go.mod
index bf98b60..9d5dedf 100644
--- a/go.mod
+++ b/go.mod
@@ -3,15 +3,17 @@ module riedstra.dev/mitch/go-website
go 1.13
require (
- github.com/dgrijalva/jwt-go v3.2.0+incompatible // indirect
- github.com/gomodule/redigo v1.8.5 // indirect
+ github.com/golang-jwt/jwt/v4 v4.4.2
+ github.com/golang/protobuf v1.5.2 // indirect
+ github.com/gomodule/redigo v1.8.9
github.com/gorilla/mux v1.8.0
github.com/kr/pretty v0.1.0 // indirect
github.com/russross/blackfriday v2.0.0+incompatible
github.com/shurcooL/sanitized_anchor_name v1.0.0 // indirect
- github.com/vmihailenco/msgpack v4.0.4+incompatible // indirect
- golang.org/x/crypto v0.0.0-20220525230936-793ad666bf5e // indirect
+ github.com/vmihailenco/msgpack v4.0.4+incompatible
+ golang.org/x/crypto v0.3.0
google.golang.org/appengine v1.6.7 // indirect
+ google.golang.org/protobuf v1.28.1 // indirect
gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15 // indirect
- gopkg.in/yaml.v3 v3.0.0-20200615113413-eeeca48fe776
+ gopkg.in/yaml.v3 v3.0.1
)