2019-07-20 10:26:52 +00:00
|
|
|
module github.com/drakkan/sftpgo
|
|
|
|
|
2019-12-30 18:27:50 +00:00
|
|
|
go 1.13
|
2019-07-20 10:26:52 +00:00
|
|
|
|
|
|
|
require (
|
2020-03-02 09:13:49 +00:00
|
|
|
cloud.google.com/go/storage v1.6.0
|
2019-07-20 10:26:52 +00:00
|
|
|
github.com/alexedwards/argon2id v0.0.0-20190612080829-01a59b2b8802
|
2020-03-02 09:13:49 +00:00
|
|
|
github.com/aws/aws-sdk-go v1.29.14
|
2020-01-19 06:41:05 +00:00
|
|
|
github.com/eikenb/pipeat v0.0.0-20190316224601-fb1f3a9aa29f
|
2020-01-31 22:26:56 +00:00
|
|
|
github.com/go-chi/chi v4.0.3+incompatible
|
2019-07-20 10:26:52 +00:00
|
|
|
github.com/go-chi/render v1.0.1
|
2020-01-11 13:29:30 +00:00
|
|
|
github.com/go-sql-driver/mysql v1.5.0
|
2020-03-02 09:13:49 +00:00
|
|
|
github.com/golang/protobuf v1.3.4 // indirect
|
2020-02-14 15:17:32 +00:00
|
|
|
github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510
|
2020-01-31 22:26:56 +00:00
|
|
|
github.com/grandcat/zeroconf v1.0.0
|
2019-12-30 18:27:50 +00:00
|
|
|
github.com/lib/pq v1.3.0
|
2020-01-31 22:26:56 +00:00
|
|
|
github.com/mattn/go-sqlite3 v2.0.3+incompatible
|
2019-09-15 10:23:27 +00:00
|
|
|
github.com/nathanaelle/password v1.0.0
|
2020-01-31 22:26:56 +00:00
|
|
|
github.com/pelletier/go-toml v1.6.0 // indirect
|
2020-02-27 08:21:30 +00:00
|
|
|
github.com/pires/go-proxyproto v0.0.0-20200213100827-833e5d06d8f0
|
2020-03-13 18:37:51 +00:00
|
|
|
github.com/pkg/sftp v1.11.1-0.20200310224833-18dc4db7a456
|
2020-02-20 23:23:00 +00:00
|
|
|
github.com/prometheus/client_golang v1.4.1
|
|
|
|
github.com/prometheus/procfs v0.0.10 // indirect
|
2019-08-04 07:37:58 +00:00
|
|
|
github.com/rs/xid v1.2.1
|
2020-02-20 23:23:00 +00:00
|
|
|
github.com/rs/zerolog v1.18.0
|
2020-01-31 22:26:56 +00:00
|
|
|
github.com/spf13/afero v1.2.2 // indirect
|
|
|
|
github.com/spf13/cast v1.3.1 // indirect
|
2020-02-20 23:23:00 +00:00
|
|
|
github.com/spf13/cobra v0.0.6
|
2020-01-31 22:26:56 +00:00
|
|
|
github.com/spf13/jwalterweatherman v1.1.0 // indirect
|
|
|
|
github.com/spf13/pflag v1.0.5 // indirect
|
|
|
|
github.com/spf13/viper v1.6.2
|
2019-08-27 08:26:04 +00:00
|
|
|
go.etcd.io/bbolt v1.3.3
|
2020-03-02 09:13:49 +00:00
|
|
|
golang.org/x/crypto v0.0.0-20200221231518-2aa609cf4a9d
|
|
|
|
golang.org/x/exp v0.0.0-20200228211341-fcea875c7e85 // indirect
|
|
|
|
golang.org/x/net v0.0.0-20200301022130-244492dfa37a // indirect
|
|
|
|
golang.org/x/sys v0.0.0-20200302083256-062a44052db1
|
|
|
|
golang.org/x/tools v0.0.0-20200301222351-066e0c02454c // indirect
|
|
|
|
google.golang.org/api v0.19.0
|
|
|
|
google.golang.org/genproto v0.0.0-20200228133532-8c2c7df3a383 // indirect
|
2020-01-31 22:26:56 +00:00
|
|
|
gopkg.in/ini.v1 v1.52.0 // indirect
|
2019-07-20 10:26:52 +00:00
|
|
|
gopkg.in/natefinch/lumberjack.v2 v2.0.0
|
2020-01-31 22:26:56 +00:00
|
|
|
gopkg.in/yaml.v2 v2.2.8 // indirect
|
2019-07-20 10:26:52 +00:00
|
|
|
)
|
2020-01-19 06:41:05 +00:00
|
|
|
|
2020-03-13 18:37:51 +00:00
|
|
|
replace (
|
|
|
|
github.com/eikenb/pipeat v0.0.0-20190316224601-fb1f3a9aa29f => github.com/drakkan/pipeat v0.0.0-20200123131427-11c048cfc0ec
|
|
|
|
golang.org/x/crypto => github.com/drakkan/crypto v0.0.0-20200313182750-40fd29667886
|
|
|
|
)
|