mirror of
https://github.com/kopia/kopia.git
synced 2025-12-23 22:57:50 -05:00
* Implement volume shadow copy support on Windows * Update go-vss version * Fix unused variables * Rename upload_actions*.go files * Move vss settings to a separate policy section * Handle existing shadow copy root * Fix tests * Fix lint issues * Add cli policy test * Add OS snapshot integration test * Add GitHub Actions VSS test * Fix "Incorrect function" error for root VSS snapshots * Rename err to finalErr in createOSSnapshot * Add OSSnapshotMode test * Do not modify paths starting with \\?\ on Windows * Allow warning messages in logfile tests * Fix ignorefs not wrapping OS snapshot directory * Retry VSS creation if another op was in progress --------- Co-authored-by: Jarek Kowalski <jaak@jkowalski.net>
143 lines
6.3 KiB
Modula-2
143 lines
6.3 KiB
Modula-2
module github.com/kopia/kopia
|
|
|
|
go 1.21
|
|
|
|
require (
|
|
cloud.google.com/go/storage v1.37.0
|
|
github.com/Azure/azure-sdk-for-go/sdk/azcore v1.9.1
|
|
github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.5.1
|
|
github.com/Azure/azure-sdk-for-go/sdk/storage/azblob v1.2.1
|
|
github.com/Azure/azure-storage-blob-go v0.15.0
|
|
github.com/alecthomas/kingpin/v2 v2.4.0
|
|
github.com/alecthomas/units v0.0.0-20211218093645-b94a6e3cc137
|
|
github.com/chmduquesne/rollinghash v4.0.0+incompatible
|
|
github.com/chromedp/cdproto v0.0.0-20231011050154-1d073bb38998
|
|
github.com/chromedp/chromedp v0.9.3
|
|
github.com/coreos/go-systemd/v22 v22.5.0
|
|
github.com/dustinkirkland/golang-petname v0.0.0-20191129215211-8e5a1ed0cff0
|
|
github.com/edsrzf/mmap-go v1.1.0
|
|
github.com/fatih/color v1.16.0
|
|
github.com/foomo/htpasswd v0.0.0-20200116085101-e3a90e78da9c
|
|
github.com/gofrs/flock v0.8.1
|
|
github.com/golang-jwt/jwt/v4 v4.5.0
|
|
github.com/golang/protobuf v1.5.3
|
|
github.com/google/fswalker v0.3.3-0.20231129010601-c0a7aa51805d
|
|
github.com/google/go-cmp v0.6.0
|
|
github.com/google/uuid v1.6.0
|
|
github.com/gorilla/mux v1.8.1
|
|
github.com/hanwen/go-fuse/v2 v2.4.0
|
|
github.com/hashicorp/cronexpr v1.1.2
|
|
github.com/klauspost/compress v1.17.5
|
|
github.com/klauspost/pgzip v1.2.6
|
|
github.com/klauspost/reedsolomon v1.12.0
|
|
github.com/kopia/htmluibuild v0.0.1-0.20231019063300-75c2a788c7d0
|
|
github.com/kylelemons/godebug v1.1.0
|
|
github.com/mattn/go-colorable v0.1.13
|
|
github.com/minio/minio-go/v7 v7.0.66
|
|
github.com/mxk/go-vss v1.2.0
|
|
github.com/natefinch/atomic v1.0.1
|
|
github.com/pierrec/lz4 v2.6.1+incompatible
|
|
github.com/pkg/errors v0.9.1
|
|
github.com/pkg/profile v1.7.0
|
|
github.com/pkg/sftp v1.13.6
|
|
github.com/prometheus/client_golang v1.18.0
|
|
github.com/prometheus/client_model v0.5.0
|
|
github.com/prometheus/common v0.46.0
|
|
github.com/sanity-io/litter v1.5.5
|
|
github.com/skratchdot/open-golang v0.0.0-20200116055534-eef842397966
|
|
github.com/stretchr/testify v1.8.4
|
|
github.com/studio-b12/gowebdav v0.9.0
|
|
github.com/tg123/go-htpasswd v1.2.2
|
|
github.com/zalando/go-keyring v0.2.3
|
|
github.com/zeebo/blake3 v0.2.3
|
|
go.opentelemetry.io/otel v1.22.0
|
|
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.22.0
|
|
go.opentelemetry.io/otel/sdk v1.22.0
|
|
go.opentelemetry.io/otel/trace v1.22.0
|
|
go.uber.org/multierr v1.11.0
|
|
go.uber.org/zap v1.26.0
|
|
golang.org/x/crypto v0.18.0
|
|
golang.org/x/exp v0.0.0-20230522175609-2e198f4a06a1
|
|
golang.org/x/mod v0.14.0
|
|
golang.org/x/net v0.20.0
|
|
golang.org/x/oauth2 v0.16.0
|
|
golang.org/x/sync v0.6.0
|
|
golang.org/x/sys v0.16.0
|
|
golang.org/x/term v0.16.0
|
|
golang.org/x/text v0.14.0
|
|
google.golang.org/api v0.160.0
|
|
google.golang.org/grpc v1.61.0
|
|
google.golang.org/protobuf v1.32.0
|
|
gopkg.in/kothar/go-backblaze.v0 v0.0.0-20210124194846-35409b867216
|
|
)
|
|
|
|
require (
|
|
cloud.google.com/go v0.112.0 // indirect
|
|
cloud.google.com/go/compute v1.23.3 // indirect
|
|
cloud.google.com/go/compute/metadata v0.2.3 // indirect
|
|
cloud.google.com/go/iam v1.1.5 // indirect
|
|
github.com/Azure/azure-pipeline-go v0.2.3 // indirect
|
|
github.com/Azure/azure-sdk-for-go/sdk/internal v1.5.1 // indirect
|
|
github.com/Azure/go-autorest/autorest/adal v0.9.16 // indirect
|
|
github.com/AzureAD/microsoft-authentication-library-for-go v1.2.1 // indirect
|
|
github.com/GehirnInc/crypt v0.0.0-20230320061759-8cc1b52080c5 // indirect
|
|
github.com/alessio/shellescape v1.4.1 // indirect
|
|
github.com/beorn7/perks v1.0.1 // indirect
|
|
github.com/cenkalti/backoff/v4 v4.2.1 // indirect
|
|
github.com/cespare/xxhash/v2 v2.2.0 // indirect
|
|
github.com/chromedp/sysutil v1.0.0 // indirect
|
|
github.com/danieljoos/wincred v1.2.0 // indirect
|
|
github.com/davecgh/go-spew v1.1.1 // indirect
|
|
github.com/dustin/go-humanize v1.0.1 // indirect
|
|
github.com/felixge/fgprof v0.9.3 // indirect
|
|
github.com/felixge/httpsnoop v1.0.4 // indirect
|
|
github.com/frankban/quicktest v1.13.1 // indirect
|
|
github.com/go-logr/logr v1.4.1 // indirect
|
|
github.com/go-logr/stdr v1.2.2 // indirect
|
|
github.com/go-ole/go-ole v1.3.0 // indirect
|
|
github.com/gobwas/httphead v0.1.0 // indirect
|
|
github.com/gobwas/pool v0.2.1 // indirect
|
|
github.com/gobwas/ws v1.3.0 // indirect
|
|
github.com/godbus/dbus/v5 v5.1.0 // indirect
|
|
github.com/golang-jwt/jwt/v5 v5.2.0 // indirect
|
|
github.com/golang/glog v1.1.2 // indirect
|
|
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
|
|
github.com/google/pprof v0.0.0-20230602150820-91b7bce49751 // indirect
|
|
github.com/google/readahead v0.0.0-20161222183148-eaceba169032 // indirect
|
|
github.com/google/s2a-go v0.1.7 // indirect
|
|
github.com/googleapis/enterprise-certificate-proxy v0.3.2 // indirect
|
|
github.com/googleapis/gax-go/v2 v2.12.0 // indirect
|
|
github.com/grpc-ecosystem/grpc-gateway/v2 v2.16.0 // indirect
|
|
github.com/josharian/intern v1.0.0 // indirect
|
|
github.com/json-iterator/go v1.1.12 // indirect
|
|
github.com/klauspost/cpuid/v2 v2.2.6 // indirect
|
|
github.com/kr/fs v0.1.0 // indirect
|
|
github.com/mailru/easyjson v0.7.7 // indirect
|
|
github.com/mattn/go-ieproxy v0.0.1 // indirect
|
|
github.com/mattn/go-isatty v0.0.20 // indirect
|
|
github.com/minio/md5-simd v1.1.2 // indirect
|
|
github.com/minio/sha256-simd v1.0.1 // indirect
|
|
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
|
|
github.com/modern-go/reflect2 v1.0.2 // indirect
|
|
github.com/pkg/browser v0.0.0-20240102092130-5ac0b6a4141c // indirect
|
|
github.com/pmezard/go-difflib v1.0.0 // indirect
|
|
github.com/pquerna/ffjson v0.0.0-20190930134022-aa0246cd15f7 // indirect
|
|
github.com/prometheus/procfs v0.12.0 // indirect
|
|
github.com/rs/xid v1.5.0 // indirect
|
|
github.com/sirupsen/logrus v1.9.3 // indirect
|
|
github.com/xhit/go-str2duration/v2 v2.1.0 // indirect
|
|
go.opencensus.io v0.24.0 // indirect
|
|
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.47.0 // indirect
|
|
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.47.0 // indirect
|
|
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.22.0 // indirect
|
|
go.opentelemetry.io/otel/metric v1.22.0 // indirect
|
|
go.opentelemetry.io/proto/otlp v1.0.0 // indirect
|
|
golang.org/x/time v0.5.0 // indirect
|
|
google.golang.org/appengine v1.6.8 // indirect
|
|
google.golang.org/genproto v0.0.0-20240116215550-a9fa1716bcac // indirect
|
|
google.golang.org/genproto/googleapis/api v0.0.0-20240122161410-6c6643bf1457 // indirect
|
|
google.golang.org/genproto/googleapis/rpc v0.0.0-20240116215550-a9fa1716bcac // indirect
|
|
gopkg.in/ini.v1 v1.67.0 // indirect
|
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
|
)
|