-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* upgrade pebble * update minor differences from latest pebble * update make bench * ensure we are closing iterators in our tests
- Loading branch information
Showing
12 changed files
with
158 additions
and
128 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
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
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
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
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
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,58 +1,63 @@ | ||
module github.com/go-bond/bond | ||
|
||
go 1.21.1 | ||
go 1.22.0 | ||
|
||
toolchain go1.23.1 | ||
|
||
require ( | ||
github.com/bits-and-blooms/bloom/v3 v3.7.0 | ||
github.com/cockroachdb/pebble v0.0.0-20240321023028-8a097e8ae86b | ||
github.com/cockroachdb/pebble v0.0.0-20240925204210-c88c74713c2d | ||
github.com/dustin/go-humanize v1.0.1 | ||
github.com/fatih/structs v1.1.0 | ||
github.com/fxamacker/cbor/v2 v2.6.0 | ||
github.com/go-resty/resty/v2 v2.12.0 | ||
github.com/fxamacker/cbor/v2 v2.7.0 | ||
github.com/go-resty/resty/v2 v2.15.2 | ||
github.com/google/uuid v1.6.0 | ||
github.com/klauspost/compress v1.17.7 | ||
github.com/klauspost/compress v1.17.10 | ||
github.com/lithammer/go-jump-consistent-hash v1.0.2 | ||
github.com/stretchr/testify v1.9.0 | ||
github.com/tinylib/msgp v1.1.9 | ||
github.com/urfave/cli/v2 v2.27.1 | ||
github.com/tinylib/msgp v1.2.1 | ||
github.com/urfave/cli/v2 v2.27.4 | ||
github.com/vmihailenco/msgpack/v5 v5.4.1 | ||
golang.org/x/exp v0.0.0-20240318143956-a85f2c67cd81 | ||
golang.org/x/sync v0.6.0 | ||
golang.org/x/exp v0.0.0-20240909161429-701f63a606c0 | ||
golang.org/x/sync v0.8.0 | ||
) | ||
|
||
require ( | ||
github.com/DataDog/zstd v1.5.6-0.20230824185856-869dae002e5e // indirect | ||
github.com/DataDog/zstd v1.5.6 // indirect | ||
github.com/beorn7/perks v1.0.1 // indirect | ||
github.com/bits-and-blooms/bitset v1.13.0 // indirect | ||
github.com/cespare/xxhash/v2 v2.2.0 // indirect | ||
github.com/cockroachdb/errors v1.11.1 // indirect | ||
github.com/bits-and-blooms/bitset v1.14.3 // indirect | ||
github.com/cespare/xxhash/v2 v2.3.0 // indirect | ||
github.com/cockroachdb/crlib v0.0.0-20240904210011-3474b320e3bf // indirect | ||
github.com/cockroachdb/errors v1.11.3 // indirect | ||
github.com/cockroachdb/fifo v0.0.0-20240816210425-c5d0cb0b6fc0 // indirect | ||
github.com/cockroachdb/logtags v0.0.0-20230118201751-21c54148d20b // indirect | ||
github.com/cockroachdb/redact v1.1.5 // indirect | ||
github.com/cockroachdb/swiss v0.0.0-20240303172742-c161743eb608 // indirect | ||
github.com/cockroachdb/swiss v0.0.0-20240612210725-f4de07ae6964 // indirect | ||
github.com/cockroachdb/tokenbucket v0.0.0-20230807174530-cc333fc44b06 // indirect | ||
github.com/cpuguy83/go-md2man/v2 v2.0.4 // indirect | ||
github.com/cpuguy83/go-md2man/v2 v2.0.5 // indirect | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/getsentry/sentry-go v0.27.0 // indirect | ||
github.com/getsentry/sentry-go v0.29.0 // indirect | ||
github.com/gogo/protobuf v1.3.2 // indirect | ||
github.com/golang/snappy v0.0.4 // indirect | ||
github.com/golang/snappy v0.0.5-0.20231225225746-43d5d4cd4e0e // indirect | ||
github.com/kr/pretty v0.3.1 // indirect | ||
github.com/kr/text v0.2.0 // indirect | ||
github.com/philhofer/fwd v1.1.2 // indirect | ||
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect | ||
github.com/philhofer/fwd v1.1.3-0.20240612014219-fbbf4953d986 // indirect | ||
github.com/pkg/errors v0.9.1 // indirect | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | ||
github.com/prometheus/client_golang v1.19.0 // indirect | ||
github.com/prometheus/client_model v0.6.0 // indirect | ||
github.com/prometheus/common v0.51.0 // indirect | ||
github.com/prometheus/procfs v0.13.0 // indirect | ||
github.com/rogpeppe/go-internal v1.12.0 // indirect | ||
github.com/prometheus/client_golang v1.20.4 // indirect | ||
github.com/prometheus/client_model v0.6.1 // indirect | ||
github.com/prometheus/common v0.59.1 // indirect | ||
github.com/prometheus/procfs v0.15.1 // indirect | ||
github.com/rogpeppe/go-internal v1.13.1 // indirect | ||
github.com/russross/blackfriday/v2 v2.1.0 // indirect | ||
github.com/stretchr/objx v0.5.2 // indirect | ||
github.com/vmihailenco/tagparser/v2 v2.0.0 // indirect | ||
github.com/x448/float16 v0.8.4 // indirect | ||
github.com/xrash/smetrics v0.0.0-20240312152122-5f08fbb34913 // indirect | ||
golang.org/x/net v0.22.0 // indirect | ||
golang.org/x/sys v0.18.0 // indirect | ||
golang.org/x/text v0.14.0 // indirect | ||
google.golang.org/protobuf v1.33.0 // indirect | ||
github.com/xrash/smetrics v0.0.0-20240521201337-686a1a2994c1 // indirect | ||
golang.org/x/net v0.29.0 // indirect | ||
golang.org/x/sys v0.25.0 // indirect | ||
golang.org/x/text v0.18.0 // indirect | ||
google.golang.org/protobuf v1.34.2 // indirect | ||
gopkg.in/yaml.v3 v3.0.1 // indirect | ||
) |
Oops, something went wrong.