-
Notifications
You must be signed in to change notification settings - Fork 1
/
go.mod
39 lines (36 loc) · 1.44 KB
/
go.mod
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
module github.com/jtarchie/sqlitezstd
go 1.22.5
require (
github.com/SaveTheRbtz/zstd-seekable-format-go/cmd/zstdseek v0.7.3
github.com/SaveTheRbtz/zstd-seekable-format-go/pkg v0.7.3
github.com/brianvoe/gofakeit/v7 v7.1.2
github.com/georgysavva/scany/v2 v2.1.3
github.com/klauspost/compress v1.17.11
github.com/mattn/go-sqlite3 v1.14.24
github.com/onsi/ginkgo/v2 v2.21.0
github.com/onsi/gomega v1.35.1
github.com/psanford/sqlite3vfs v0.0.0-20240315230605-24e1d98cf361
howett.net/ranger v0.0.0-20171016084633-e2e137620847
)
require (
github.com/SaveTheRbtz/fastcdc-go v0.3.0 // indirect
github.com/cespare/xxhash/v2 v2.3.0 // indirect
github.com/go-logr/logr v1.4.2 // indirect
github.com/go-task/slim-sprig/v3 v3.0.0 // indirect
github.com/google/btree v1.1.3 // indirect
github.com/google/go-cmp v0.6.0 // indirect
github.com/google/pprof v0.0.0-20241101162523-b92577c0c142 // indirect
github.com/mitchellh/colorstring v0.0.0-20190213212951-d06e56a500db // indirect
github.com/rivo/uniseg v0.4.7 // indirect
github.com/schollz/progressbar/v3 v3.17.0 // indirect
go.uber.org/atomic v1.11.0 // indirect
go.uber.org/multierr v1.11.0 // indirect
go.uber.org/zap v1.27.0 // indirect
golang.org/x/net v0.30.0 // indirect
golang.org/x/sync v0.8.0 // indirect
golang.org/x/sys v0.26.0 // indirect
golang.org/x/term v0.25.0 // indirect
golang.org/x/text v0.19.0 // indirect
golang.org/x/tools v0.26.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)