torrent/go.mod

50 lines
1.6 KiB
Modula-2
Raw Normal View History

2018-05-25 06:22:54 +00:00
module github.com/anacrolix/torrent
2021-12-23 02:45:51 +00:00
go 1.16
2021-10-06 07:43:15 +00:00
2018-05-25 06:22:54 +00:00
require (
2021-08-26 01:19:39 +00:00
github.com/RoaringBitmap/roaring v0.9.4
github.com/alexflint/go-arg v1.4.2
2022-02-20 05:16:57 +00:00
github.com/anacrolix/args v0.5.0
2021-11-04 22:30:25 +00:00
github.com/anacrolix/chansync v0.3.0
github.com/anacrolix/dht/v2 v2.15.2-0.20220123034220-0538803801cb
2021-02-01 23:47:38 +00:00
github.com/anacrolix/envpprof v1.1.1
github.com/anacrolix/fuse v0.2.0
github.com/anacrolix/go-libutp v1.2.0
github.com/anacrolix/log v0.10.1-0.20220123034749-3920702c17f8
2021-06-23 07:24:50 +00:00
github.com/anacrolix/missinggo v1.3.0
2019-08-21 10:44:12 +00:00
github.com/anacrolix/missinggo/perf v1.0.0
2021-08-16 00:37:19 +00:00
github.com/anacrolix/missinggo/v2 v2.5.2
2021-11-04 22:30:25 +00:00
github.com/anacrolix/multiless v0.2.0
2022-01-13 22:22:08 +00:00
github.com/anacrolix/squirrel v0.4.0
2021-08-16 00:37:19 +00:00
github.com/anacrolix/sync v0.4.0
github.com/anacrolix/tagflag v1.3.0
github.com/anacrolix/upnp v0.1.3-0.20220123035249-922794e51c96
2021-01-29 11:05:09 +00:00
github.com/anacrolix/utp v0.1.0
2020-01-23 03:16:46 +00:00
github.com/bradfitz/iter v0.0.0-20191230175014-e8f45d346db8
2019-01-08 04:45:25 +00:00
github.com/davecgh/go-spew v1.1.1
github.com/dustin/go-humanize v1.0.0
github.com/edsrzf/mmap-go v1.0.0
2021-03-11 22:45:38 +00:00
github.com/elliotchance/orderedmap v1.4.0
2021-10-20 05:41:33 +00:00
github.com/frankban/quicktest v1.14.0
2021-09-02 00:31:47 +00:00
github.com/fsnotify/fsnotify v1.5.1
2021-04-28 04:32:57 +00:00
github.com/google/btree v1.0.1
2021-10-06 07:43:15 +00:00
github.com/google/go-cmp v0.5.6
github.com/gorilla/websocket v1.4.2
2021-09-02 00:31:47 +00:00
github.com/jessevdk/go-flags v1.5.0
github.com/pion/datachannel v1.5.2
github.com/pion/webrtc/v3 v3.1.24-0.20220208053747-94262c1b2b38
2020-01-23 03:16:46 +00:00
github.com/pkg/errors v0.9.1
2021-02-21 21:30:34 +00:00
github.com/stretchr/testify v1.7.0
2021-08-16 00:37:19 +00:00
go.etcd.io/bbolt v1.3.6
golang.org/x/time v0.0.0-20210723032227-1f47c861a9ac
zombiezen.com/go/sqlite v0.8.0
2018-05-25 06:22:54 +00:00
)
2019-06-21 04:49:01 +00:00
2021-12-13 01:16:43 +00:00
retract (
// Doesn't signal interest to peers if choked when piece priorities change.
v1.39.0
// peer-requesting doesn't scale
[v1.34.0, v1.38.1]
)