2019-07-20 12:26:52 +02:00
|
|
|
module github.com/drakkan/sftpgo
|
|
|
|
|
|
2019-12-30 19:27:50 +01:00
|
|
|
go 1.13
|
2019-07-20 12:26:52 +02:00
|
|
|
|
|
|
|
|
require (
|
2020-04-03 22:30:30 +02:00
|
|
|
cloud.google.com/go v0.56.0 // indirect
|
2020-03-02 10:13:49 +01:00
|
|
|
cloud.google.com/go/storage v1.6.0
|
2019-07-20 12:26:52 +02:00
|
|
|
github.com/alexedwards/argon2id v0.0.0-20190612080829-01a59b2b8802
|
2020-04-03 22:30:30 +02:00
|
|
|
github.com/aws/aws-sdk-go v1.30.3
|
2020-05-07 00:05:40 +02:00
|
|
|
github.com/eikenb/pipeat v0.0.0-20200430215831-470df5986b6d
|
2020-03-14 15:27:03 +01:00
|
|
|
github.com/fsnotify/fsnotify v1.4.9 // indirect
|
2020-04-21 19:24:38 +02:00
|
|
|
github.com/go-chi/chi v4.1.1+incompatible
|
2019-07-20 12:26:52 +02:00
|
|
|
github.com/go-chi/render v1.0.1
|
2020-01-11 14:29:30 +01:00
|
|
|
github.com/go-sql-driver/mysql v1.5.0
|
2020-02-14 16:17:32 +01:00
|
|
|
github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510
|
2020-01-31 23:26:56 +01:00
|
|
|
github.com/grandcat/zeroconf v1.0.0
|
2019-12-30 19:27:50 +01:00
|
|
|
github.com/lib/pq v1.3.0
|
2020-01-31 23:26:56 +01:00
|
|
|
github.com/mattn/go-sqlite3 v2.0.3+incompatible
|
2020-03-21 10:12:30 +01:00
|
|
|
github.com/miekg/dns v1.1.29 // indirect
|
|
|
|
|
github.com/mitchellh/mapstructure v1.2.2 // indirect
|
2020-03-20 17:25:38 +01:00
|
|
|
github.com/nathanaelle/password/v2 v2.0.1
|
2020-06-13 22:48:51 +02:00
|
|
|
github.com/otiai10/copy v1.2.0
|
2020-04-03 22:30:30 +02:00
|
|
|
github.com/pelletier/go-toml v1.7.0 // indirect
|
2020-05-14 20:10:33 +02:00
|
|
|
github.com/pires/go-proxyproto v0.1.3
|
2020-03-13 19:37:51 +01:00
|
|
|
github.com/pkg/sftp v1.11.1-0.20200310224833-18dc4db7a456
|
2020-03-21 10:12:30 +01:00
|
|
|
github.com/prometheus/client_golang v1.5.1
|
|
|
|
|
github.com/prometheus/procfs v0.0.11 // indirect
|
2019-08-04 09:37:58 +02:00
|
|
|
github.com/rs/xid v1.2.1
|
2020-02-21 00:23:00 +01:00
|
|
|
github.com/rs/zerolog v1.18.0
|
2020-01-31 23:26:56 +01:00
|
|
|
github.com/spf13/afero v1.2.2 // indirect
|
|
|
|
|
github.com/spf13/cast v1.3.1 // indirect
|
2020-04-21 19:24:38 +02:00
|
|
|
github.com/spf13/cobra v1.0.0
|
2020-01-31 23:26:56 +01:00
|
|
|
github.com/spf13/jwalterweatherman v1.1.0 // indirect
|
|
|
|
|
github.com/spf13/pflag v1.0.5 // indirect
|
2020-04-21 19:24:38 +02:00
|
|
|
github.com/spf13/viper v1.6.3
|
2020-05-02 15:47:23 +02:00
|
|
|
github.com/stretchr/testify v1.5.1
|
2020-03-21 10:12:30 +01:00
|
|
|
go.etcd.io/bbolt v1.3.4
|
2020-05-16 15:15:32 +02:00
|
|
|
golang.org/x/crypto v0.0.0-20200510223506-06a226fb4e37
|
|
|
|
|
golang.org/x/sys v0.0.0-20200515095857-1151b9dac4a9
|
|
|
|
|
golang.org/x/tools v0.0.0-20200515220128-d3bf790afa53 // indirect
|
2020-03-14 15:27:03 +01:00
|
|
|
google.golang.org/api v0.20.0
|
2020-04-03 22:30:30 +02:00
|
|
|
google.golang.org/genproto v0.0.0-20200403120447-c50568487044 // indirect
|
2020-03-21 10:12:30 +01:00
|
|
|
gopkg.in/ini.v1 v1.55.0 // indirect
|
2019-07-20 12:26:52 +02:00
|
|
|
gopkg.in/natefinch/lumberjack.v2 v2.0.0
|
|
|
|
|
)
|
2020-01-19 07:41:05 +01:00
|
|
|
|
2020-03-13 19:37:51 +01:00
|
|
|
replace (
|
2020-04-10 23:35:57 +02:00
|
|
|
github.com/pkg/sftp => github.com/drakkan/sftp v0.0.0-20200319122022-2fc68482d27f
|
2020-05-24 12:13:14 +02:00
|
|
|
golang.org/x/crypto => github.com/drakkan/crypto v0.0.0-20200524095353-320d3214f471
|
2020-03-13 19:37:51 +01:00
|
|
|
)
|