|
1 | 1 | module github.com/pojntfx/r3map |
2 | 2 |
|
3 | | -go 1.20 |
| 3 | +go 1.21.4 |
| 4 | + |
| 5 | +toolchain go1.22.5 |
| 6 | + |
| 7 | +replace github.com/gocql/gocql => github.com/scylladb/gocql v1.14.2 |
4 | 8 |
|
5 | 9 | require ( |
6 | | - github.com/cespare/xxhash/v2 v2.2.0 |
| 10 | + github.com/cespare/xxhash/v2 v2.3.0 |
7 | 11 | github.com/edsrzf/mmap-go v1.1.0 |
8 | | - github.com/gocql/gocql v1.4.0 |
9 | | - github.com/loopholelabs/frisbee-go v0.7.1 |
10 | | - github.com/loopholelabs/polyglot-go v0.5.1 |
11 | | - github.com/minio/minio-go v6.0.14+incompatible |
| 12 | + github.com/gocql/gocql v1.6.0 |
| 13 | + github.com/loopholelabs/frisbee-go v0.8.1 |
| 14 | + github.com/loopholelabs/polyglot/v2 v2.0.1 |
| 15 | + github.com/minio/minio-go/v7 v7.0.74 |
12 | 16 | github.com/pojntfx/go-nbd v0.3.2 |
13 | | - github.com/pojntfx/panrpc/go v0.0.0-20240122224243-a88b51e450d4 |
14 | | - github.com/redis/go-redis/v9 v9.2.1 |
15 | | - github.com/rs/zerolog v1.30.0 |
16 | | - github.com/schollz/progressbar/v3 v3.13.1 |
17 | | - google.golang.org/grpc v1.57.0 |
18 | | - google.golang.org/protobuf v1.31.0 |
| 17 | + github.com/pojntfx/panrpc/go v0.0.0-20240727035459-583758c47d9f |
| 18 | + github.com/redis/go-redis/v9 v9.6.1 |
| 19 | + github.com/rs/zerolog v1.33.0 |
| 20 | + github.com/schollz/progressbar/v3 v3.14.5 |
| 21 | + google.golang.org/grpc v1.65.0 |
| 22 | + google.golang.org/protobuf v1.34.2 |
19 | 23 | ) |
20 | 24 |
|
21 | 25 | require ( |
22 | 26 | github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect |
| 27 | + github.com/dustin/go-humanize v1.0.1 // indirect |
23 | 28 | github.com/go-ini/ini v1.67.0 // indirect |
24 | | - github.com/golang/protobuf v1.5.3 // indirect |
| 29 | + github.com/goccy/go-json v0.10.3 // indirect |
25 | 30 | github.com/golang/snappy v0.0.4 // indirect |
26 | | - github.com/google/uuid v1.3.0 // indirect |
| 31 | + github.com/google/uuid v1.6.0 // indirect |
27 | 32 | github.com/hailocab/go-hostpool v0.0.0-20160125115350-e80d13ce29ed // indirect |
28 | | - github.com/klauspost/cpuid/v2 v2.2.5 // indirect |
| 33 | + github.com/klauspost/compress v1.17.9 // indirect |
| 34 | + github.com/klauspost/cpuid/v2 v2.2.8 // indirect |
29 | 35 | github.com/loopholelabs/common v0.4.9 // indirect |
30 | 36 | github.com/mattn/go-colorable v0.1.13 // indirect |
31 | | - github.com/mattn/go-isatty v0.0.19 // indirect |
32 | | - github.com/mattn/go-runewidth v0.0.15 // indirect |
| 37 | + github.com/mattn/go-isatty v0.0.20 // indirect |
| 38 | + github.com/minio/md5-simd v1.1.2 // indirect |
33 | 39 | github.com/mitchellh/colorstring v0.0.0-20190213212951-d06e56a500db // indirect |
34 | | - github.com/mitchellh/go-homedir v1.1.0 // indirect |
35 | 40 | github.com/pilebones/go-udev v0.9.0 // indirect |
36 | | - github.com/pkg/errors v0.9.1 // indirect |
37 | | - github.com/rivo/uniseg v0.4.4 // indirect |
| 41 | + github.com/rivo/uniseg v0.4.7 // indirect |
| 42 | + github.com/rs/xid v1.5.0 // indirect |
38 | 43 | go.uber.org/atomic v1.11.0 // indirect |
39 | | - go.uber.org/goleak v1.2.1 // indirect |
40 | | - golang.org/x/crypto v0.12.0 // indirect |
41 | | - golang.org/x/net v0.14.0 // indirect |
42 | | - golang.org/x/sys v0.11.0 // indirect |
43 | | - golang.org/x/term v0.11.0 // indirect |
44 | | - golang.org/x/text v0.12.0 // indirect |
45 | | - google.golang.org/genproto/googleapis/rpc v0.0.0-20230807174057-1744710a1577 // indirect |
| 44 | + golang.org/x/crypto v0.25.0 // indirect |
| 45 | + golang.org/x/net v0.27.0 // indirect |
| 46 | + golang.org/x/sys v0.22.0 // indirect |
| 47 | + golang.org/x/term v0.22.0 // indirect |
| 48 | + golang.org/x/text v0.16.0 // indirect |
| 49 | + google.golang.org/genproto/googleapis/rpc v0.0.0-20240725223205-93522f1f2a9f // indirect |
46 | 50 | gopkg.in/inf.v0 v0.9.1 // indirect |
47 | 51 | ) |
48 | | - |
49 | | -replace github.com/gocql/gocql => github.com/scylladb/gocql v1.10.0 |
|
0 commit comments