-
Notifications
You must be signed in to change notification settings - Fork 95
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
127 additions
and
678 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,57 +1,58 @@ | ||
module github.com/genjidb/genji/cmd/genji | ||
|
||
go 1.19 | ||
go 1.21 | ||
|
||
toolchain go1.21.4 | ||
|
||
require ( | ||
github.com/agnivade/levenshtein v1.1.1 | ||
github.com/c-bata/go-prompt v0.2.6 | ||
github.com/cockroachdb/errors v1.9.1 | ||
github.com/cockroachdb/pebble v0.0.0-20230126224944-0a21ab1b22f5 | ||
github.com/genjidb/genji v0.16.0 | ||
github.com/stretchr/testify v1.8.1 | ||
github.com/cockroachdb/errors v1.11.1 | ||
github.com/cockroachdb/pebble v1.0.0 | ||
github.com/genjidb/genji v0.15.3 | ||
github.com/stretchr/testify v1.8.4 | ||
github.com/urfave/cli/v2 v2.3.0 | ||
go.uber.org/multierr v1.7.0 | ||
golang.org/x/sync v0.1.0 | ||
golang.org/x/sync v0.5.0 | ||
) | ||
|
||
require ( | ||
github.com/DataDog/zstd v1.5.2 // indirect | ||
github.com/DataDog/zstd v1.5.5 // indirect | ||
github.com/beorn7/perks v1.0.1 // indirect | ||
github.com/buger/jsonparser v1.1.1 // indirect | ||
github.com/cespare/xxhash/v2 v2.2.0 // indirect | ||
github.com/cockroachdb/logtags v0.0.0-20230118201751-21c54148d20b // indirect | ||
github.com/cockroachdb/redact v1.1.3 // indirect | ||
github.com/cockroachdb/redact v1.1.5 // indirect | ||
github.com/cpuguy83/go-md2man/v2 v2.0.1 // indirect | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/getsentry/sentry-go v0.17.0 // indirect | ||
github.com/getsentry/sentry-go v0.25.0 // indirect | ||
github.com/gogo/protobuf v1.3.2 // indirect | ||
github.com/golang/protobuf v1.5.2 // indirect | ||
github.com/golang/snappy v0.0.4 // indirect | ||
github.com/google/go-cmp v0.5.9 // indirect | ||
github.com/klauspost/compress v1.15.15 // indirect | ||
github.com/google/go-cmp v0.6.0 // indirect | ||
github.com/klauspost/compress v1.17.4 // indirect | ||
github.com/kr/pretty v0.3.1 // indirect | ||
github.com/kr/text v0.2.0 // indirect | ||
github.com/mattn/go-colorable v0.1.13 // indirect | ||
github.com/mattn/go-isatty v0.0.16 // indirect | ||
github.com/mattn/go-isatty v0.0.17 // indirect | ||
github.com/mattn/go-runewidth v0.0.13 // indirect | ||
github.com/mattn/go-tty v0.0.4 // indirect | ||
github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect | ||
github.com/matttproud/golang_protobuf_extensions/v2 v2.0.0 // indirect | ||
github.com/pkg/errors v0.9.1 // indirect | ||
github.com/pkg/term v1.2.0-beta.2 // indirect | ||
github.com/pmezard/go-difflib v1.0.0 // 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/client_golang v1.17.0 // indirect | ||
github.com/prometheus/client_model v0.5.0 // indirect | ||
github.com/prometheus/common v0.45.0 // indirect | ||
github.com/prometheus/procfs v0.12.0 // indirect | ||
github.com/rivo/uniseg v0.2.0 // indirect | ||
github.com/rogpeppe/go-internal v1.9.0 // indirect | ||
github.com/rogpeppe/go-internal v1.12.0 // indirect | ||
github.com/russross/blackfriday/v2 v2.1.0 // indirect | ||
go.uber.org/atomic v1.9.0 // indirect | ||
golang.org/x/exp v0.0.0-20220613132600-b0d781184e0d // indirect | ||
golang.org/x/sys v0.4.0 // indirect | ||
golang.org/x/text v0.6.0 // indirect | ||
google.golang.org/protobuf v1.28.1 // indirect | ||
golang.org/x/exp v0.0.0-20231214170342-aacd6d4b4611 // indirect | ||
golang.org/x/sys v0.15.0 // indirect | ||
golang.org/x/text v0.14.0 // indirect | ||
google.golang.org/protobuf v1.31.0 // indirect | ||
gopkg.in/yaml.v3 v3.0.1 // indirect | ||
) | ||
|
||
replace github.com/genjidb/genji v0.16.0 => ../../ | ||
replace github.com/genjidb/genji v0.15.3 => ../../ |
Oops, something went wrong.