Skip to content

Commit

Permalink
fix: freeze deps in go mod for all packages
Browse files Browse the repository at this point in the history
  • Loading branch information
vividvilla committed Sep 5, 2018
1 parent 6c238fc commit 445949e
Show file tree
Hide file tree
Showing 8 changed files with 62 additions and 0 deletions.
9 changes: 9 additions & 0 deletions examples/fasthttp-inmemory/go.mod
Original file line number Diff line number Diff line change
@@ -1 +1,10 @@
module github.com/vividvilla/simplesessions/examples/fasthttp-inmemory

require (
github.com/klauspost/compress v1.4.0 // indirect
github.com/klauspost/cpuid v0.0.0-20180405133222-e7e905edc00e // indirect
github.com/valyala/bytebufferpool v0.0.0-20160817181652-e746df99fe4a // indirect
github.com/valyala/fasthttp v0.0.0-20180901052036-d7688109a57b
github.com/vividvilla/simplesessions v0.0.1
github.com/vividvilla/simplesessions/stores/memory v0.0.0-20180905073812-64bb2453ba8a
)
13 changes: 13 additions & 0 deletions examples/fasthttp-redis/go.mod
Original file line number Diff line number Diff line change
@@ -1 +1,14 @@
module github.com/vividvilla/simplesessions/examples/fasthttp-redis

require (
github.com/alicebob/gopher-json v0.0.0-20180125190556-5a6b3ba71ee6 // indirect
github.com/alicebob/miniredis v0.0.0-20180903194238-a6a1e4126522 // indirect
github.com/gomodule/redigo v2.0.0+incompatible
github.com/klauspost/compress v1.4.0 // indirect
github.com/klauspost/cpuid v0.0.0-20180405133222-e7e905edc00e // indirect
github.com/valyala/bytebufferpool v0.0.0-20160817181652-e746df99fe4a // indirect
github.com/valyala/fasthttp v0.0.0-20180901052036-d7688109a57b
github.com/vividvilla/simplesessions v0.0.1
github.com/vividvilla/simplesessions/stores/redis v0.0.0-20180905073812-64bb2453ba8a
github.com/yuin/gopher-lua v0.0.0-20180827083657-b942cacc89fe // indirect
)
5 changes: 5 additions & 0 deletions examples/nethttp-inmemory/go.mod
Original file line number Diff line number Diff line change
@@ -1 +1,6 @@
module github.com/vividvilla/simplesessions/examples/nethttp-inmemory

require (
github.com/vividvilla/simplesessions v0.0.1
github.com/vividvilla/simplesessions/stores/memory v0.0.0-20180905073812-64bb2453ba8a
)
9 changes: 9 additions & 0 deletions examples/nethttp-redis/go.mod
Original file line number Diff line number Diff line change
@@ -1 +1,10 @@
module github.com/vividvilla/simplesessions/examples/nethttp-redis

require (
github.com/alicebob/gopher-json v0.0.0-20180125190556-5a6b3ba71ee6 // indirect
github.com/alicebob/miniredis v0.0.0-20180903194238-a6a1e4126522 // indirect
github.com/gomodule/redigo v2.0.0+incompatible
github.com/vividvilla/simplesessions v0.0.1
github.com/vividvilla/simplesessions/stores/redis v0.0.0-20180905073812-64bb2453ba8a
github.com/yuin/gopher-lua v0.0.0-20180827083657-b942cacc89fe // indirect
)
6 changes: 6 additions & 0 deletions examples/nethttp-secure-cookie/go.mod
Original file line number Diff line number Diff line change
@@ -1 +1,7 @@
module github.com/vividvilla/simplesessions/examples/nethttp-secure-cookie

require (
github.com/gorilla/securecookie v1.1.1 // indirect
github.com/vividvilla/simplesessions v0.0.1
github.com/vividvilla/simplesessions/stores/securecookie v0.0.0-20180905073812-64bb2453ba8a
)
5 changes: 5 additions & 0 deletions stores/memory/go.mod
Original file line number Diff line number Diff line change
@@ -1 +1,6 @@
module github.com/vividvilla/simplesessions/stores/memory

require (
github.com/stretchr/testify v1.2.2
github.com/vividvilla/simplesessions v0.0.1
)
9 changes: 9 additions & 0 deletions stores/redis/go.mod
Original file line number Diff line number Diff line change
@@ -1 +1,10 @@
module github.com/vividvilla/simplesessions/stores/redis

require (
github.com/alicebob/gopher-json v0.0.0-20180125190556-5a6b3ba71ee6 // indirect
github.com/alicebob/miniredis v0.0.0-20180903194238-a6a1e4126522
github.com/gomodule/redigo v2.0.0+incompatible
github.com/stretchr/testify v1.2.2
github.com/vividvilla/simplesessions v0.0.1
github.com/yuin/gopher-lua v0.0.0-20180827083657-b942cacc89fe // indirect
)
6 changes: 6 additions & 0 deletions stores/securecookie/go.mod
Original file line number Diff line number Diff line change
@@ -1 +1,7 @@
module github.com/vividvilla/simplesessions/stores/securecookie

require (
github.com/gorilla/securecookie v1.1.1
github.com/stretchr/testify v1.2.2
github.com/vividvilla/simplesessions v0.0.1
)

0 comments on commit 445949e

Please sign in to comment.