Cloudreve/go.mod

48 lines
1.9 KiB
Modula-2
Raw Normal View History

module github.com/cloudreve/Cloudreve/v3
2019-11-04 20:30:12 +08:00
2020-03-09 16:53:01 +08:00
go 1.13
2019-11-05 12:31:22 +08:00
2019-11-05 19:49:56 +08:00
require (
2019-11-07 15:56:05 +08:00
github.com/DATA-DOG/go-sqlmock v1.3.3
2020-01-16 13:36:13 +08:00
github.com/aliyun/aliyun-oss-go-sdk v2.0.5+incompatible
github.com/aws/aws-sdk-go v1.31.5
2020-03-09 16:53:01 +08:00
github.com/baiyubin/aliyun-sts-go-sdk v0.0.0-20180326062324-cfa1a18b161f // indirect
2019-12-08 22:17:36 +08:00
github.com/duo-labs/webauthn v0.0.0-20191119193225-4bf9a0f776d4
github.com/fatih/color v1.7.0
2019-11-23 15:09:46 +08:00
github.com/gin-contrib/cors v1.3.0
github.com/gin-contrib/gzip v0.0.2-0.20200226035851-25bef2ef21e8
2019-11-11 19:13:17 +08:00
github.com/gin-contrib/sessions v0.0.1
2020-03-09 14:07:36 +08:00
github.com/gin-contrib/static v0.0.0-20191128031702-f81c604d8ac2
github.com/gin-gonic/gin v1.5.0
2019-11-08 18:29:12 +08:00
github.com/go-ini/ini v1.50.0
2020-02-15 14:02:21 +08:00
github.com/go-mail/mail v2.3.1+incompatible
Feat: aria2 download and transfer in slave node (#1040) * Feat: retrieve nodes from data table * Feat: master node ping slave node in REST API * Feat: master send scheduled ping request * Feat: inactive nodes recover loop * Modify: remove database operations from aria2 RPC caller implementation * Feat: init aria2 client in master node * Feat: Round Robin load balancer * Feat: create and monitor aria2 task in master node * Feat: salve receive and handle heartbeat * Fix: Node ID will be 0 in download record generated in older version * Feat: sign request headers with all `X-` prefix * Feat: API call to slave node will carry meta data in headers * Feat: call slave aria2 rpc method from master * Feat: get slave aria2 task status Feat: encode slave response data using gob * Feat: aria2 callback to master node / cancel or select task to slave node * Fix: use dummy aria2 client when caller initialize failed in master node * Feat: slave aria2 status event callback / salve RPC auth * Feat: prototype for slave driven filesystem * Feat: retry for init aria2 client in master node * Feat: init request client with global options * Feat: slave receive async task from master * Fix: competition write in request header * Refactor: dependency initialize order * Feat: generic message queue implementation * Feat: message queue implementation * Feat: master waiting slave transfer result * Feat: slave transfer file in stateless policy * Feat: slave transfer file in slave policy * Feat: slave transfer file in local policy * Feat: slave transfer file in OneDrive policy * Fix: failed to initialize update checker http client * Feat: list slave nodes for dashboard * Feat: test aria2 rpc connection in slave * Feat: add and save node * Feat: add and delete node in node pool * Fix: temp file cannot be removed when aria2 task fails * Fix: delete node in admin panel * Feat: edit node and get node info * Modify: delete unused settings
2021-10-31 09:41:56 +08:00
github.com/gofrs/uuid v4.0.0+incompatible
2019-12-09 19:30:52 +08:00
github.com/gomodule/redigo v2.0.0+incompatible
2020-01-25 11:20:31 +08:00
github.com/google/go-querystring v1.0.0
github.com/gorilla/websocket v1.4.1
2020-03-18 11:36:34 +08:00
github.com/hashicorp/go-version v1.2.0
2019-11-06 22:35:31 +08:00
github.com/jinzhu/gorm v1.9.11
2019-11-27 13:10:19 +08:00
github.com/juju/ratelimit v1.0.1
github.com/mattn/go-colorable v0.1.4 // indirect
2019-11-13 17:03:55 +08:00
github.com/mojocn/base64Captcha v0.0.0-20190801020520-752b1cd608b2
github.com/nfnt/resize v0.0.0-20180221191011-83c6a9932646
github.com/pkg/errors v0.9.1
2020-02-20 12:42:38 +08:00
github.com/pquerna/otp v1.2.0
2019-11-26 11:42:26 +08:00
github.com/qiniu/api.v7/v7 v7.4.0
2019-12-09 19:30:52 +08:00
github.com/rafaeljusto/redigomock v0.0.0-20191117212112-00b2509252a1
2020-03-09 14:07:36 +08:00
github.com/rakyll/statik v0.1.7
2020-02-15 14:02:21 +08:00
github.com/robfig/cron/v3 v3.0.1
2019-11-23 15:09:46 +08:00
github.com/smartystreets/goconvey v1.6.4 // indirect
2020-01-26 13:07:05 +08:00
github.com/speps/go-hashids v2.0.0+incompatible
github.com/stretchr/testify v1.5.1
2020-03-01 16:25:56 +08:00
github.com/tencentcloud/tencentcloud-sdk-go v3.0.125+incompatible
2020-01-23 12:38:32 +08:00
github.com/tencentyun/cos-go-sdk-v5 v0.0.0-20200120023323-87ff3bc489ac
2020-01-18 14:08:43 +08:00
github.com/upyun/go-sdk v2.1.0+incompatible
golang.org/x/image v0.0.0-20211028202545-6944b10bf410
golang.org/x/text v0.3.6
2020-03-09 16:53:01 +08:00
gopkg.in/alexcesaro/quotedprintable.v3 v3.0.0-20150716171945-2caba252f4dc // indirect
2020-03-09 14:07:36 +08:00
gopkg.in/go-playground/validator.v9 v9.29.1
2019-11-23 15:09:46 +08:00
gopkg.in/ini.v1 v1.51.0 // indirect
2020-03-09 16:53:01 +08:00
gopkg.in/mail.v2 v2.3.1 // indirect
2019-11-05 19:49:56 +08:00
)