File tree Expand file tree Collapse file tree 3 files changed +14
-7
lines changed Expand file tree Collapse file tree 3 files changed +14
-7
lines changed Original file line number Diff line number Diff line change 1
1
module github.com/go-admin-team/redis-watcher/v2
2
2
3
- go 1.18
3
+ go 1.20
4
+
5
+ require (
6
+ github.com/casbin/casbin/v2 v2.77.2
7
+ github.com/casbin/redis-watcher/v2 v2.5.0
8
+ github.com/google/uuid v1.4.0
9
+ github.com/redis/go-redis/v9 v9.3.0
10
+ )
4
11
5
12
require (
6
- github.com/casbin/casbin/v2 v2.54.0
7
- github.com/go-redis/redis/v9 v9.0.0-rc.1
8
- github.com/google/uuid v1.3.0
9
13
github.com/Knetic/govaluate v3.0.1-0.20171022003610-9aa49832a739+incompatible // indirect
10
- github.com/cespare/xxhash/v2 v2.1.2 // indirect
14
+ github.com/cespare/xxhash/v2 v2.2.0 // indirect
11
15
github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect
16
+ github.com/tidwall/gjson v1.14.4 // indirect
17
+ github.com/tidwall/match v1.1.1 // indirect
18
+ github.com/tidwall/pretty v1.2.0 // indirect
12
19
)
Original file line number Diff line number Diff line change 1
1
package rediswatcher
2
2
3
3
import (
4
- rds "github.com/go-redis/redis/v9"
5
4
"github.com/google/uuid"
5
+ rds "github.com/redis/go-redis/v9"
6
6
)
7
7
8
8
type WatcherOptions struct {
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ import (
12
12
"github.com/casbin/casbin/v2"
13
13
"github.com/casbin/casbin/v2/model"
14
14
"github.com/casbin/casbin/v2/persist"
15
- rds "github.com/go- redis/redis/v9"
15
+ rds "github.com/redis/go- redis/v9"
16
16
)
17
17
18
18
type Watcher struct {
You can’t perform that action at this time.
0 commit comments