2018-05-25 14:22:54 +08:00
|
|
|
module github.com/anacrolix/torrent
|
|
|
|
|
2021-12-23 10:45:51 +08:00
|
|
|
go 1.16
|
2021-10-06 15:43:15 +08:00
|
|
|
|
2018-05-25 14:22:54 +08:00
|
|
|
require (
|
2021-08-26 09:19:39 +08:00
|
|
|
github.com/RoaringBitmap/roaring v0.9.4
|
|
|
|
github.com/alexflint/go-arg v1.4.2
|
2021-11-10 06:48:01 +08:00
|
|
|
github.com/anacrolix/args v0.4.1-0.20211104085705-59f0fe94eb8f
|
2021-11-05 06:30:25 +08:00
|
|
|
github.com/anacrolix/chansync v0.3.0
|
2022-01-23 06:37:11 +08:00
|
|
|
github.com/anacrolix/dht/v2 v2.15.2-0.20220123034220-0538803801cb
|
2021-02-02 07:47:38 +08:00
|
|
|
github.com/anacrolix/envpprof v1.1.1
|
2021-11-16 15:27:11 +08:00
|
|
|
github.com/anacrolix/fuse v0.2.0
|
2021-12-12 18:32:29 +08:00
|
|
|
github.com/anacrolix/go-libutp v1.1.0
|
2022-01-23 06:37:11 +08:00
|
|
|
github.com/anacrolix/log v0.10.1-0.20220123034749-3920702c17f8
|
2021-06-23 15:24:50 +08:00
|
|
|
github.com/anacrolix/missinggo v1.3.0
|
2019-08-21 18:44:12 +08:00
|
|
|
github.com/anacrolix/missinggo/perf v1.0.0
|
2021-08-16 08:37:19 +08:00
|
|
|
github.com/anacrolix/missinggo/v2 v2.5.2
|
2021-11-05 06:30:25 +08:00
|
|
|
github.com/anacrolix/multiless v0.2.0
|
2022-01-14 06:22:08 +08:00
|
|
|
github.com/anacrolix/squirrel v0.4.0
|
2021-08-16 08:37:19 +08:00
|
|
|
github.com/anacrolix/sync v0.4.0
|
2021-05-04 14:00:22 +08:00
|
|
|
github.com/anacrolix/tagflag v1.3.0
|
2022-01-23 06:37:11 +08:00
|
|
|
github.com/anacrolix/upnp v0.1.3-0.20220123035249-922794e51c96
|
2021-01-29 19:05:09 +08:00
|
|
|
github.com/anacrolix/utp v0.1.0
|
2020-01-23 11:16:46 +08:00
|
|
|
github.com/bradfitz/iter v0.0.0-20191230175014-e8f45d346db8
|
2019-01-08 12:45:25 +08: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 06:45:38 +08:00
|
|
|
github.com/elliotchance/orderedmap v1.4.0
|
2021-10-20 13:41:33 +08:00
|
|
|
github.com/frankban/quicktest v1.14.0
|
2021-09-02 08:31:47 +08:00
|
|
|
github.com/fsnotify/fsnotify v1.5.1
|
2021-04-28 12:32:57 +08:00
|
|
|
github.com/google/btree v1.0.1
|
2021-10-06 15:43:15 +08:00
|
|
|
github.com/google/go-cmp v0.5.6
|
2020-04-05 11:55:14 +08:00
|
|
|
github.com/gorilla/websocket v1.4.2
|
2021-09-02 08:31:47 +08:00
|
|
|
github.com/jessevdk/go-flags v1.5.0
|
2022-02-09 09:45:40 +08:00
|
|
|
github.com/pion/datachannel v1.5.2
|
|
|
|
github.com/pion/webrtc/v3 v3.1.24-0.20220208053747-94262c1b2b38
|
2020-01-23 11:16:46 +08:00
|
|
|
github.com/pkg/errors v0.9.1
|
2021-02-22 05:30:34 +08:00
|
|
|
github.com/stretchr/testify v1.7.0
|
2021-08-16 08:37:19 +08:00
|
|
|
go.etcd.io/bbolt v1.3.6
|
|
|
|
golang.org/x/time v0.0.0-20210723032227-1f47c861a9ac
|
2021-11-26 14:06:13 +08:00
|
|
|
zombiezen.com/go/sqlite v0.8.0
|
2018-05-25 14:22:54 +08:00
|
|
|
)
|
2019-06-21 12:49:01 +08:00
|
|
|
|
2022-01-07 16:15:59 +08:00
|
|
|
// https://gitlab.com/cznic/sqlite/-/issues/77#note_744477407
|
|
|
|
require modernc.org/sqlite v1.14.2-0.20211125151325-d4ed92c0a70f // indirect
|
2021-12-12 15:24:27 +08:00
|
|
|
|
2021-12-13 09:16:43 +08: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]
|
|
|
|
)
|