* add common config and encryption passwd Adds a provider-independent configuration handler, and the the encryption password config property. The password is used to encrypt and decrypt the kopia repository properties file. * fix corso_password in ci.yml * actually use the corso password in testing * replace passwd in ci.yml with a secret * ci.yml secret typo fix
60 lines
2.5 KiB
Modula-2
60 lines
2.5 KiB
Modula-2
module github.com/alcionai/corso
|
|
|
|
go 1.18
|
|
|
|
require (
|
|
github.com/google/uuid v1.3.0
|
|
github.com/kopia/kopia v0.10.7
|
|
github.com/pkg/errors v0.9.1
|
|
github.com/spf13/cobra v1.4.0
|
|
github.com/stretchr/testify v1.7.1
|
|
github.com/zeebo/assert v1.1.0
|
|
)
|
|
|
|
require (
|
|
github.com/beorn7/perks v1.0.1 // indirect
|
|
github.com/cespare/xxhash/v2 v2.1.2 // indirect
|
|
github.com/chmduquesne/rollinghash v4.0.0+incompatible // indirect
|
|
github.com/davecgh/go-spew v1.1.1 // indirect
|
|
github.com/dustin/go-humanize v1.0.0 // indirect
|
|
github.com/golang/protobuf v1.5.2 // indirect
|
|
github.com/hashicorp/golang-lru v0.5.4 // indirect
|
|
github.com/inconshreveable/mousetrap v1.0.0 // indirect
|
|
github.com/json-iterator/go v1.1.12 // indirect
|
|
github.com/klauspost/compress v1.15.1 // indirect
|
|
github.com/klauspost/cpuid/v2 v2.0.12 // indirect
|
|
github.com/klauspost/pgzip v1.2.5 // indirect
|
|
github.com/matttproud/golang_protobuf_extensions v1.0.1 // indirect
|
|
github.com/minio/md5-simd v1.1.2 // indirect
|
|
github.com/minio/minio-go/v7 v7.0.23 // indirect
|
|
github.com/minio/sha256-simd v1.0.0 // indirect
|
|
github.com/mitchellh/go-homedir v1.1.0 // indirect
|
|
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
|
|
github.com/modern-go/reflect2 v1.0.2 // indirect
|
|
github.com/natefinch/atomic v1.0.1 // indirect
|
|
github.com/pierrec/lz4 v2.6.1+incompatible // indirect
|
|
github.com/pmezard/go-difflib v1.0.0 // indirect
|
|
github.com/prometheus/client_golang v1.12.1 // indirect
|
|
github.com/prometheus/client_model v0.2.0 // indirect
|
|
github.com/prometheus/common v0.32.1 // indirect
|
|
github.com/prometheus/procfs v0.7.3 // indirect
|
|
github.com/rs/xid v1.3.0 // indirect
|
|
github.com/sirupsen/logrus v1.8.1 // indirect
|
|
github.com/spf13/pflag v1.0.5 // indirect
|
|
github.com/zeebo/blake3 v0.2.3 // indirect
|
|
go.uber.org/atomic v1.9.0 // indirect
|
|
go.uber.org/multierr v1.8.0 // indirect
|
|
go.uber.org/zap v1.21.0 // indirect
|
|
golang.org/x/crypto v0.0.0-20210921155107-089bfa567519 // indirect
|
|
golang.org/x/exp v0.0.0-20210916165020-5cb4fee858ee // indirect
|
|
golang.org/x/net v0.0.0-20220325170049-de3da57026de // indirect
|
|
golang.org/x/sync v0.0.0-20210220032951-036812b2e83c // indirect
|
|
golang.org/x/sys v0.0.0-20220328115105-d36c6a25d886 // indirect
|
|
golang.org/x/text v0.3.7 // indirect
|
|
google.golang.org/genproto v0.0.0-20220324131243-acbaeb5b85eb // indirect
|
|
google.golang.org/grpc v1.45.0 // indirect
|
|
google.golang.org/protobuf v1.28.0 // indirect
|
|
gopkg.in/ini.v1 v1.66.2 // indirect
|
|
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect
|
|
)
|