-
Notifications
You must be signed in to change notification settings - Fork 1
/
go.mod
23 lines (20 loc) · 808 Bytes
/
go.mod
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
module github.com/prongbang/fiber-casbinrest
go 1.17
require (
github.com/casbin/casbin/v2 v2.40.6
github.com/gofiber/fiber/v2 v2.24.0
github.com/golang-jwt/jwt v3.2.2+incompatible
github.com/stretchr/testify v1.7.0
)
require (
github.com/Knetic/govaluate v3.0.1-0.20171022003610-9aa49832a739+incompatible // indirect
github.com/andybalholm/brotli v1.0.2 // indirect
github.com/davecgh/go-spew v1.1.0 // indirect
github.com/klauspost/compress v1.13.4 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/valyala/bytebufferpool v1.0.0 // indirect
github.com/valyala/fasthttp v1.31.0 // indirect
github.com/valyala/tcplisten v1.0.0 // indirect
golang.org/x/sys v0.0.0-20210514084401-e8d321eab015 // indirect
gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c // indirect
)