mirror of
https://github.com/kopia/kopia.git
synced 2026-01-26 15:28:06 -05:00
* sftp: support for external SSH command and host verfication improvements - removed custom parsing of hostnames and verification and replaced with standard 'knownhosts' implementation. - added option to launch external SSH command which supports aliases, agent, etc. NOTE, we're still not supporting any cases where password needs to be entered on the command line, since that would be incompatible with the UI which uses client-server model. Fixes #500 Fixes #414 * site: updated SFTP repository connection instructions Fixes #590
63 lines
2.6 KiB
Modula-2
63 lines
2.6 KiB
Modula-2
module github.com/kopia/kopia
|
|
|
|
go 1.15
|
|
|
|
require (
|
|
bazil.org/fuse v0.0.0-20200117225306-7b5117fecadc
|
|
cloud.google.com/go/storage v1.8.0
|
|
contrib.go.opencensus.io/exporter/prometheus v0.1.0
|
|
github.com/Azure/azure-pipeline-go v0.2.2 // indirect
|
|
github.com/Azure/azure-storage-blob-go v0.8.0
|
|
github.com/alecthomas/units v0.0.0-20190924025748-f65c72e2690d // indirect
|
|
github.com/alexhunt7/ssher v0.0.0-20190216204854-d36569cf7047
|
|
github.com/aws/aws-sdk-go v1.31.3
|
|
github.com/bgentry/speakeasy v0.1.0
|
|
github.com/chmduquesne/rollinghash v4.0.0+incompatible
|
|
github.com/efarrer/iothrottler v0.0.1
|
|
github.com/fatih/color v1.9.0
|
|
github.com/foomo/htpasswd v0.0.0-20200116085101-e3a90e78da9c
|
|
github.com/gofrs/flock v0.7.1
|
|
github.com/golang/protobuf v1.4.2
|
|
github.com/google/fswalker v0.2.1-0.20200214223026-f0e929ba4126
|
|
github.com/google/go-cmp v0.4.0
|
|
github.com/google/readahead v0.0.0-20161222183148-eaceba169032 // indirect
|
|
github.com/google/uuid v1.1.1
|
|
github.com/google/wire v0.4.0 // indirect
|
|
github.com/gorilla/mux v1.7.4
|
|
github.com/kevinburke/ssh_config v0.0.0-20190725054713-01f96b0aa0cd // indirect
|
|
github.com/klauspost/compress v1.10.10
|
|
github.com/klauspost/pgzip v1.2.4
|
|
github.com/kylelemons/godebug v1.1.0
|
|
github.com/mattn/go-colorable v0.1.6 // indirect
|
|
github.com/mattn/go-ieproxy v0.0.1 // indirect
|
|
github.com/minio/minio v0.0.0-20200521180750-fade0562443f
|
|
github.com/minio/minio-go/v6 v6.0.55
|
|
github.com/natefinch/atomic v0.0.0-20150920032501-a62ce929ffcc
|
|
github.com/op/go-logging v0.0.0-20160315200505-970db520ece7
|
|
github.com/pkg/errors v0.9.1
|
|
github.com/pkg/profile v1.5.0
|
|
github.com/pkg/sftp v1.11.0
|
|
github.com/pquerna/ffjson v0.0.0-20190930134022-aa0246cd15f7 // indirect
|
|
github.com/prometheus/client_golang v1.6.0
|
|
github.com/skratchdot/open-golang v0.0.0-20200116055534-eef842397966
|
|
github.com/stretchr/testify v1.5.1
|
|
github.com/studio-b12/gowebdav v0.0.0-20200303150724-9380631c29a1
|
|
github.com/tg123/go-htpasswd v1.0.0
|
|
github.com/zalando/go-keyring v0.0.0-20200121091418-667557018717
|
|
go.opencensus.io v0.22.3
|
|
gocloud.dev v0.19.0
|
|
golang.org/x/crypto v0.0.0-20200510223506-06a226fb4e37
|
|
golang.org/x/exp v0.0.0-20200513190911-00229845015e
|
|
golang.org/x/mod v0.3.0
|
|
golang.org/x/net v0.0.0-20200520182314-0ba52f642ac2
|
|
golang.org/x/oauth2 v0.0.0-20200107190931-bf48bf16ab8d
|
|
golang.org/x/sync v0.0.0-20200317015054-43a5402ce75a
|
|
golang.org/x/sys v0.0.0-20200511232937-7e40ca221e25
|
|
golang.org/x/tools v0.0.0-20200521155704-91d71f6c2f04 // indirect
|
|
google.golang.org/api v0.25.0
|
|
google.golang.org/protobuf v1.23.0
|
|
gopkg.in/alecthomas/kingpin.v2 v2.2.6
|
|
gopkg.in/ini.v1 v1.56.0 // indirect
|
|
gopkg.in/kothar/go-backblaze.v0 v0.0.0-20191215213626-7594ed38700f
|
|
)
|