mirror of
https://github.com/zrepl/zrepl.git
synced 2024-11-21 16:03:32 +01:00
bd30afaaf9
Local sync and sync over SSH seems to work. The sshdirect transport might be interesting / re-usable for zrepl as well, although we'd still need some kind of locking in that case.
47 lines
2.3 KiB
Modula-2
47 lines
2.3 KiB
Modula-2
module github.com/zrepl/zrepl
|
|
|
|
go 1.12
|
|
|
|
require (
|
|
github.com/fatih/color v1.7.0
|
|
github.com/gdamore/tcell v1.2.0
|
|
github.com/gitchander/permutation v0.0.0-20181107151852-9e56b92e9909
|
|
github.com/go-logfmt/logfmt v0.4.0
|
|
github.com/go-sql-driver/mysql v1.4.1-0.20190907122137-b2c03bcae3d4
|
|
github.com/golang/protobuf v1.3.2
|
|
github.com/google/uuid v1.1.1
|
|
github.com/hashicorp/yamux v0.0.0-20200609203250-aecfd211c9ce
|
|
github.com/jinzhu/copier v0.0.0-20170922082739-db4671f3a9b8
|
|
github.com/kr/pretty v0.1.0
|
|
github.com/lib/pq v1.2.0
|
|
github.com/mattn/go-colorable v0.1.4 // indirect
|
|
github.com/mattn/go-isatty v0.0.8
|
|
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // // go1.12 mod tidy adds this dependency as 'indirect', but go1.13 mod tidy removes it if the trailing comment is 'indirect' => add this comment to make the build work without changing go.mod on both go1.12 and go1.13
|
|
github.com/modern-go/reflect2 v1.0.1 // go1.12 mod tidy adds this dependency as 'indirect', but go1.13 mod tidy removes it if the trailing comment is 'indirect' => add this comment to make the build work without changing go.mod on both go1.12 and go1.13
|
|
github.com/montanaflynn/stats v0.5.0
|
|
github.com/onsi/ginkgo v1.10.2 // indirect
|
|
github.com/onsi/gomega v1.7.0 // indirect
|
|
github.com/pkg/errors v0.8.1
|
|
github.com/pkg/profile v1.2.1
|
|
github.com/problame/go-netssh v0.0.0-20200601114649-26439f9f0dc5
|
|
github.com/prometheus/client_golang v1.2.1
|
|
github.com/prometheus/common v0.7.0
|
|
github.com/sergi/go-diff v1.0.1-0.20180205163309-da645544ed44 // go1.12 thinks it needs this
|
|
github.com/spf13/cobra v0.0.2
|
|
github.com/spf13/pflag v1.0.5
|
|
github.com/stretchr/testify v1.4.0
|
|
github.com/willf/bitset v1.1.10
|
|
github.com/yudai/gojsondiff v0.0.0-20170107030110-7b1b7adf999d
|
|
github.com/yudai/golcs v0.0.0-20170316035057-ecda9a501e82 // go1.12 thinks it needs this
|
|
github.com/zrepl/yaml-config v0.0.0-20191220194647-cbb6b0cf4bdd
|
|
golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2
|
|
golang.org/x/net v0.0.0-20190613194153-d28f0bde5980
|
|
golang.org/x/sync v0.0.0-20190423024810-112230192c58
|
|
golang.org/x/sys v0.0.0-20191026070338-33540a1f6037
|
|
golang.org/x/tools v0.0.0-20190206041539-40960b6deb8e
|
|
gonum.org/v1/gonum v0.7.0 // indirect
|
|
google.golang.org/grpc v1.17.0
|
|
)
|
|
|
|
replace github.com/problame/go-netssh => /home/cs/zrepl/go-netssh
|