2
0
mirror of synced 2025-02-24 14:48:27 +00:00
torrent/go.mod

50 lines
1.6 KiB
Modula-2
Raw Normal View History

2018-05-25 16:22:54 +10:00
module github.com/anacrolix/torrent
2021-12-23 13:45:51 +11:00
go 1.16
2021-10-06 18:43:15 +11:00
2018-05-25 16:22:54 +10:00
require (
2021-08-26 11:19:39 +10:00
github.com/RoaringBitmap/roaring v0.9.4
github.com/alexflint/go-arg v1.4.2
2022-02-20 16:16:57 +11:00
github.com/anacrolix/args v0.5.0
2021-11-05 09:30:25 +11:00
github.com/anacrolix/chansync v0.3.0
github.com/anacrolix/dht/v2 v2.15.2-0.20220123034220-0538803801cb
2021-02-02 10:47:38 +11: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 17:24:50 +10:00
github.com/anacrolix/missinggo v1.3.0
2019-08-21 20:44:12 +10:00
github.com/anacrolix/missinggo/perf v1.0.0
2021-08-16 10:37:19 +10:00
github.com/anacrolix/missinggo/v2 v2.5.2
2021-11-05 09:30:25 +11:00
github.com/anacrolix/multiless v0.2.0
2022-01-14 09:22:08 +11:00
github.com/anacrolix/squirrel v0.4.0
2021-08-16 10:37:19 +10: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 22:05:09 +11:00
github.com/anacrolix/utp v0.1.0
2020-01-23 14:16:46 +11:00
github.com/bradfitz/iter v0.0.0-20191230175014-e8f45d346db8
2019-01-08 15:45:25 +11: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-12 09:45:38 +11:00
github.com/elliotchance/orderedmap v1.4.0
2021-10-20 16:41:33 +11:00
github.com/frankban/quicktest v1.14.0
2021-09-02 10:31:47 +10:00
github.com/fsnotify/fsnotify v1.5.1
2021-04-28 14:32:57 +10:00
github.com/google/btree v1.0.1
2021-10-06 18:43:15 +11:00
github.com/google/go-cmp v0.5.6
github.com/gorilla/websocket v1.4.2
2021-09-02 10:31:47 +10: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 14:16:46 +11:00
github.com/pkg/errors v0.9.1
2021-02-21 13:30:34 -08:00
github.com/stretchr/testify v1.7.0
2021-08-16 10:37:19 +10: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 16:22:54 +10:00
)
2019-06-21 14:49:01 +10:00
2021-12-13 12:16:43 +11: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]
)