Skip to content

Commit a47c6d0

Browse files
author
Jeffrey Koehler
committed
Fix stream interface being made into any, and force it to be a string
1 parent a1250ab commit a47c6d0

File tree

3 files changed

+40
-241
lines changed

3 files changed

+40
-241
lines changed

go.mod

Lines changed: 11 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -3,30 +3,20 @@ module github.com/streemtech/divider
33
go 1.23
44

55
require (
6-
github.com/go-redis/cache/v9 v9.0.0
7-
github.com/google/uuid v1.5.0
8-
github.com/prometheus/client_golang v1.17.0
9-
github.com/redis/go-redis/v9 v9.3.1
6+
github.com/google/uuid v1.6.0
7+
github.com/pkg/errors v0.9.1
8+
github.com/prometheus/client_golang v1.20.4
9+
github.com/redis/go-redis/v9 v9.6.1
1010
)
1111

1212
require (
1313
github.com/beorn7/perks v1.0.1 // indirect
14-
github.com/cespare/xxhash/v2 v2.2.0 // indirect
14+
github.com/cespare/xxhash/v2 v2.3.0 // indirect
1515
github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect
16-
github.com/k0kubun/pp/v3 v3.2.0 // indirect
17-
github.com/klauspost/compress v1.17.4 // indirect
18-
github.com/mattn/go-colorable v0.1.13 // indirect
19-
github.com/mattn/go-isatty v0.0.16 // indirect
20-
github.com/matttproud/golang_protobuf_extensions/v2 v2.0.0 // indirect
21-
github.com/pkg/errors v0.9.1 // indirect
22-
github.com/prometheus/client_model v0.5.0 // indirect
23-
github.com/prometheus/common v0.45.0 // indirect
24-
github.com/prometheus/procfs v0.12.0 // indirect
25-
github.com/vmihailenco/go-tinylfu v0.2.2 // indirect
26-
github.com/vmihailenco/msgpack/v5 v5.4.1 // indirect
27-
github.com/vmihailenco/tagparser/v2 v2.0.0 // indirect
28-
golang.org/x/sync v0.5.0 // indirect
29-
golang.org/x/sys v0.15.0 // indirect
30-
golang.org/x/text v0.13.0 // indirect
31-
google.golang.org/protobuf v1.31.0 // indirect
16+
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
17+
github.com/prometheus/client_model v0.6.1 // indirect
18+
github.com/prometheus/common v0.60.0 // indirect
19+
github.com/prometheus/procfs v0.15.1 // indirect
20+
golang.org/x/sys v0.26.0 // indirect
21+
google.golang.org/protobuf v1.35.1 // indirect
3222
)

0 commit comments

Comments
 (0)