-
Notifications
You must be signed in to change notification settings - Fork 3
/
go.mod
31 lines (28 loc) · 1.09 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
module github.com/psanford/donutdb
go 1.18
require (
github.com/aws/aws-sdk-go v1.40.15
github.com/divan/num2words v0.0.0-20170904212200-57dba452f942
github.com/google/go-cmp v0.5.9
github.com/klauspost/compress v1.13.4
github.com/mattn/go-sqlite3 v1.14.8
github.com/prometheus/client_golang v1.15.0
github.com/psanford/sqlite3vfs v0.0.0-20230408213214-cec222788cc6
github.com/spf13/cobra v1.2.1
golang.org/x/exp v0.0.0-20230420155640-133eef4313cb
)
require (
github.com/beorn7/perks v1.0.1 // indirect
github.com/cespare/xxhash/v2 v2.2.0 // indirect
github.com/golang/protobuf v1.5.3 // indirect
github.com/golang/snappy v0.0.3 // indirect
github.com/inconshreveable/mousetrap v1.0.0 // indirect
github.com/jmespath/go-jmespath v0.4.0 // indirect
github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect
github.com/prometheus/client_model v0.3.0 // indirect
github.com/prometheus/common v0.42.0 // indirect
github.com/prometheus/procfs v0.9.0 // indirect
github.com/spf13/pflag v1.0.5 // indirect
golang.org/x/sys v0.6.0 // indirect
google.golang.org/protobuf v1.30.0 // indirect
)