sftpgo-mirror/go.mod

58 lines
2.4 KiB
Modula-2
Raw Normal View History

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 (
cloud.google.com/go v0.64.0 // indirect
2020-06-20 14:09:55 +00:00
cloud.google.com/go/storage v1.10.0
2020-08-11 21:56:10 +00:00
github.com/alexedwards/argon2id v0.0.0-20200802152012-2464efd3196b
github.com/aws/aws-sdk-go v1.34.8
github.com/eikenb/pipeat v0.0.0-20200430215831-470df5986b6d
github.com/fclairamb/ftpserverlib v0.8.1-0.20200729230026-7f0ab9d81bb6
github.com/fsnotify/fsnotify v1.4.9 // indirect
2020-06-20 14:09:55 +00:00
github.com/go-chi/chi v4.1.2+incompatible
2019-07-20 10:26:52 +00:00
github.com/go-chi/render v1.0.1
github.com/go-sql-driver/mysql v1.5.0
github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510
2020-01-31 22:26:56 +00:00
github.com/grandcat/zeroconf v1.0.0
github.com/jlaffaye/ftp v0.0.0-20200720194710-13949d38913e
github.com/lib/pq v1.8.0
github.com/mattn/go-sqlite3 v1.14.1
2020-08-11 21:56:10 +00:00
github.com/miekg/dns v1.1.31 // indirect
github.com/mitchellh/mapstructure v1.3.3 // indirect
github.com/nathanaelle/password/v2 v2.0.1
github.com/otiai10/copy v1.2.0
2020-06-20 14:09:55 +00:00
github.com/pelletier/go-toml v1.8.0 // indirect
github.com/pires/go-proxyproto v0.1.3
github.com/pkg/sftp v1.11.1-0.20200819110714-3ee8d0ba91c0
2020-07-05 20:54:00 +00:00
github.com/prometheus/client_golang v1.7.1
github.com/prometheus/common v0.13.0 // indirect
2020-08-15 13:55:20 +00:00
github.com/rs/cors v1.7.1-0.20200626170627-8b4a00bd362b
github.com/rs/xid v1.2.1
2020-06-20 14:09:55 +00:00
github.com/rs/zerolog v1.19.0
2020-08-11 21:56:10 +00:00
github.com/spf13/afero v1.3.4
2020-01-31 22:26:56 +00:00
github.com/spf13/cast v1.3.1 // indirect
github.com/spf13/cobra v1.0.0
2020-01-31 22:26:56 +00:00
github.com/spf13/jwalterweatherman v1.1.0 // indirect
github.com/spf13/pflag v1.0.5 // indirect
2020-08-11 21:56:10 +00:00
github.com/spf13/viper v1.7.1
2020-06-20 19:57:51 +00:00
github.com/stretchr/testify v1.6.1
2020-08-11 21:56:10 +00:00
github.com/studio-b12/gowebdav v0.0.0-20200303150724-9380631c29a1
2020-06-20 14:09:55 +00:00
go.etcd.io/bbolt v1.3.5
golang.org/x/crypto v0.0.0-20200728195943-123391ffb6de
golang.org/x/net v0.0.0-20200813134508-3edf25e44fcc
golang.org/x/sys v0.0.0-20200819171115-d785dc25833f
golang.org/x/tools v0.0.0-20200820010801-b793a1359eac // indirect
2020-08-11 21:56:10 +00:00
google.golang.org/api v0.30.0
gopkg.in/ini.v1 v1.60.0 // indirect
2019-07-20 10:26:52 +00:00
gopkg.in/natefinch/lumberjack.v2 v2.0.0
)
replace (
github.com/fclairamb/ftpserverlib => github.com/drakkan/ftpserverlib v0.0.0-20200814103339-511fcfd63dfe
2020-08-11 21:56:10 +00:00
github.com/jlaffaye/ftp => github.com/drakkan/ftp v0.0.0-20200730125632-b21eac28818c
github.com/pkg/sftp => github.com/drakkan/sftp v0.0.0-20200822075112-b48593166377
golang.org/x/crypto => github.com/drakkan/crypto v0.0.0-20200731130417-7674a892f9b1
2020-08-11 21:56:10 +00:00
golang.org/x/net => github.com/drakkan/net v0.0.0-20200807161257-daa5cda5ae27
)