Description: Use system xxhash
Author: Guillem Jover <gjover@sipwise.com>
Origin: other, Sipwise
Forwarded: no
Last-Update: 2020-02-24

---
 bigcache.go  |    2 +-
 fastcache.go |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

--- a/bigcache.go
+++ b/bigcache.go
@@ -4,7 +4,7 @@ import (
 	"sync"
 	"sync/atomic"
 
-	xxhash "github.com/cespare/xxhash/v2"
+	"github.com/cespare/xxhash"
 )
 
 // maxSubvalueLen is the maximum size of subvalue chunk.
--- a/fastcache.go
+++ b/fastcache.go
@@ -8,7 +8,7 @@ import (
 	"sync"
 	"sync/atomic"
 
-	xxhash "github.com/cespare/xxhash/v2"
+	"github.com/cespare/xxhash"
 )
 
 const bucketsCount = 512
