2022-08-24 02:54:01 +00:00
|
|
|
module git.keganmyers.com/terribleplan/file-store
|
|
|
|
|
|
|
|
go 1.19
|
|
|
|
|
|
|
|
require (
|
2022-08-28 06:04:36 +00:00
|
|
|
github.com/google/uuid v1.3.0
|
2022-08-24 02:54:01 +00:00
|
|
|
github.com/klauspost/reedsolomon v1.10.0
|
2022-08-28 06:04:36 +00:00
|
|
|
github.com/mattn/go-sqlite3 v1.14.15
|
2022-08-24 02:54:01 +00:00
|
|
|
github.com/spf13/cobra v1.5.0
|
2022-08-28 06:04:36 +00:00
|
|
|
google.golang.org/grpc v1.49.0
|
|
|
|
google.golang.org/protobuf v1.28.1
|
2022-08-24 02:54:01 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
require (
|
2022-08-28 06:04:36 +00:00
|
|
|
github.com/golang/protobuf v1.5.2 // indirect
|
2022-08-24 02:54:01 +00:00
|
|
|
github.com/inconshreveable/mousetrap v1.0.0 // indirect
|
|
|
|
github.com/klauspost/cpuid/v2 v2.0.14 // indirect
|
|
|
|
github.com/spf13/pflag v1.0.5 // indirect
|
2022-08-28 06:04:36 +00:00
|
|
|
golang.org/x/net v0.0.0-20201021035429-f5854403a974 // indirect
|
|
|
|
golang.org/x/sys v0.0.0-20210119212857-b64e53b001e4 // indirect
|
|
|
|
golang.org/x/text v0.3.3 // indirect
|
|
|
|
google.golang.org/genproto v0.0.0-20200526211855-cb27e3aa2013 // indirect
|
2022-08-24 02:54:01 +00:00
|
|
|
)
|