-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #74 from nlnwa/fix-scan-closest
Fix search and sorting when using TiKV
- Loading branch information
Showing
8 changed files
with
224 additions
and
1,649 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,41 +1,92 @@ | ||
module github.com/nlnwa/gowarcserver | ||
|
||
go 1.16 | ||
go 1.19 | ||
|
||
require ( | ||
github.com/bits-and-blooms/bloom/v3 v3.3.1 | ||
github.com/dgraph-io/badger/v3 v3.2103.4 | ||
github.com/dgraph-io/badger/v3 v3.2103.5 | ||
github.com/gorilla/handlers v1.5.1 | ||
github.com/julienschmidt/httprouter v1.3.0 | ||
github.com/mitchellh/mapstructure v1.5.0 | ||
github.com/nlnwa/gowarc v1.0.0 | ||
github.com/nlnwa/gowarc v1.0.1 | ||
github.com/nlnwa/whatwg-url v0.1.2 | ||
github.com/rs/zerolog v1.28.0 | ||
github.com/rs/zerolog v1.29.0 | ||
github.com/segmentio/kafka-go v0.4.38 | ||
github.com/spf13/cobra v1.6.1 | ||
github.com/spf13/viper v1.14.0 | ||
github.com/tikv/client-go/v2 v2.0.2 | ||
github.com/spf13/viper v1.15.0 | ||
github.com/tikv/client-go/v2 v2.0.6-0.20230215075757-b3c491995e64 | ||
google.golang.org/protobuf v1.28.1 | ||
) | ||
|
||
require ( | ||
github.com/benbjohnson/clock v1.3.0 // indirect | ||
github.com/bits-and-blooms/bitset v1.4.0 // indirect | ||
github.com/beorn7/perks v1.0.1 // indirect | ||
github.com/bits-and-blooms/bitset v1.5.0 // indirect | ||
github.com/cespare/xxhash v1.1.0 // indirect | ||
github.com/cespare/xxhash/v2 v2.2.0 // indirect | ||
github.com/coreos/go-semver v0.3.1 // indirect | ||
github.com/coreos/go-systemd/v22 v22.5.0 // indirect | ||
github.com/cznic/mathutil v0.0.0-20181122101859-297441e03548 // indirect | ||
github.com/dgraph-io/ristretto v0.1.1 // indirect | ||
github.com/dgryski/go-farm v0.0.0-20200201041132-a6ae2369ad13 // indirect | ||
github.com/google/flatbuffers v22.11.23+incompatible // indirect | ||
github.com/dustin/go-humanize v1.0.1 // indirect | ||
github.com/felixge/httpsnoop v1.0.3 // indirect | ||
github.com/fsnotify/fsnotify v1.6.0 // indirect | ||
github.com/gogo/protobuf v1.3.2 // indirect | ||
github.com/golang/glog v1.0.0 // indirect | ||
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect | ||
github.com/golang/protobuf v1.5.2 // indirect | ||
github.com/golang/snappy v0.0.4 // indirect | ||
github.com/google/btree v1.1.2 // indirect | ||
github.com/google/flatbuffers v23.1.21+incompatible // indirect | ||
github.com/google/uuid v1.3.0 // indirect | ||
github.com/grpc-ecosystem/go-grpc-middleware v1.3.0 // indirect | ||
github.com/hashicorp/hcl v1.0.0 // indirect | ||
github.com/inconshreveable/mousetrap v1.1.0 // indirect | ||
github.com/klauspost/compress v1.15.14 // indirect | ||
github.com/klauspost/compress v1.15.15 // indirect | ||
github.com/magiconair/properties v1.8.7 // indirect | ||
github.com/mattn/go-colorable v0.1.13 // indirect | ||
github.com/mattn/go-isatty v0.0.17 // indirect | ||
github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect | ||
github.com/opentracing/opentracing-go v1.2.0 // indirect | ||
github.com/pelletier/go-toml/v2 v2.0.6 // indirect | ||
github.com/pierrec/lz4/v4 v4.1.17 // indirect | ||
github.com/pingcap/errors v0.11.5-0.20221009092201-b66cddb77c32 // indirect | ||
github.com/pingcap/failpoint v0.0.0-20220801062533-2eaa32854a6c // indirect | ||
github.com/pingcap/kvproto v0.0.0-20221130051817-ca78592cde8c // indirect | ||
github.com/pingcap/kvproto v0.0.0-20230213063737-f1dee547f028 // indirect | ||
github.com/pingcap/log v1.1.1-0.20221116035753-734d527bc87c // indirect | ||
github.com/prometheus/prometheus v0.41.0 // indirect | ||
github.com/pkg/errors v0.9.1 // indirect | ||
github.com/prometheus/client_golang v1.14.0 // indirect | ||
github.com/prometheus/client_model v0.3.0 // indirect | ||
github.com/prometheus/common v0.39.0 // indirect | ||
github.com/prometheus/procfs v0.9.0 // indirect | ||
github.com/prometheus/prometheus v0.42.0 // indirect | ||
github.com/remyoudompheng/bigfft v0.0.0-20230129092748-24d4a6f8daec // indirect | ||
github.com/rogpeppe/go-internal v1.8.0 // indirect | ||
github.com/spf13/afero v1.9.3 // indirect | ||
github.com/tikv/pd/client v0.0.0-20221130112201-58fde4919361 // indirect | ||
github.com/spf13/cast v1.5.0 // indirect | ||
github.com/spf13/jwalterweatherman v1.1.0 // indirect | ||
github.com/spf13/pflag v1.0.5 // indirect | ||
github.com/stathat/consistent v1.0.0 // indirect | ||
github.com/subosito/gotenv v1.4.2 // indirect | ||
github.com/tiancaiamao/gp v0.0.0-20230126082955-4f9e4f1ed9b5 // indirect | ||
github.com/tikv/pd/client v0.0.0-20230209034200-6d23a31c24be // indirect | ||
github.com/twmb/murmur3 v1.1.6 // indirect | ||
go.etcd.io/etcd/api/v3 v3.5.7 // indirect | ||
go.etcd.io/etcd/client/pkg/v3 v3.5.7 // indirect | ||
go.etcd.io/etcd/client/v3 v3.5.7 // indirect | ||
go.opencensus.io v0.24.0 // indirect | ||
go.uber.org/atomic v1.10.0 // indirect | ||
go.uber.org/multierr v1.9.0 // indirect | ||
go.uber.org/zap v1.24.0 // indirect | ||
golang.org/x/net v0.5.0 // indirect | ||
golang.org/x/crypto v0.4.0 // indirect | ||
golang.org/x/net v0.7.0 // indirect | ||
golang.org/x/sync v0.1.0 // indirect | ||
golang.org/x/sys v0.5.0 // indirect | ||
golang.org/x/text v0.7.0 // indirect | ||
google.golang.org/genproto v0.0.0-20230209215440-0dfe4f8abfcc // indirect | ||
google.golang.org/grpc v1.53.0 // indirect | ||
gopkg.in/ini.v1 v1.67.0 // indirect | ||
gopkg.in/natefinch/lumberjack.v2 v2.2.1 // indirect | ||
gopkg.in/yaml.v3 v3.0.1 // indirect | ||
) |
Oops, something went wrong.