forked from boypt/simple-torrent
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgo.mod
32 lines (29 loc) · 1.19 KB
/
go.mod
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
module cloud-torrent
go 1.13
require (
github.com/NYTimes/gziphandler v1.1.1
github.com/anacrolix/log v0.4.0
github.com/anacrolix/torrent v1.10.0
github.com/boypt/scraper v1.0.2
github.com/c2h5oh/datasize v0.0.0-20171227191756-4eba002a5eae
github.com/elazarl/go-bindata-assetfs v1.0.0
github.com/jpillora/archive v0.0.0-20160301031048-e0b3681851f1
github.com/jpillora/cloud-torrent v0.0.0-00010101000000-000000000000
github.com/jpillora/cookieauth v0.0.0-20190219222732-2ae29b2a9c76
github.com/jpillora/opts v1.1.0
github.com/jpillora/requestlog v0.0.0-20181015073026-df8817be5f82
github.com/jpillora/velox v0.0.0-20180825063758-42845d323220
github.com/mmcdole/gofeed v1.0.0-beta2
github.com/pkg/errors v0.8.1
github.com/radovskyb/watcher v1.0.6
github.com/shirou/gopsutil v2.18.12+incompatible
github.com/skratchdot/open-golang v0.0.0-20190402232053-79abb63cd66e
golang.org/x/time v0.0.0-20191024005414-555d28b269f0
)
replace (
github.com/boltdb/bolt => github.com/boypt/bolt v1.3.2
github.com/jpillora/cloud-torrent => ./
github.com/jpillora/cloud-torrent/engine => ./engine/
github.com/jpillora/cloud-torrent/server => ./server/
github.com/jpillora/cloud-torrent/static => ./static/
)