-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathgo.mod
More file actions
64 lines (59 loc) · 2.83 KB
/
Copy pathgo.mod
File metadata and controls
64 lines (59 loc) · 2.83 KB
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
module github.com/redstone-md/moss
go 1.25.0
toolchain go1.25.9
require (
github.com/anacrolix/dht/v2 v2.24.0
github.com/flynn/noise v1.1.0
github.com/huin/goupnp v1.3.0
github.com/jackpal/go-nat-pmp v1.0.2
github.com/redstone-md/veil/core v0.1.0
golang.org/x/crypto v0.50.0
golang.org/x/net v0.53.0
golang.org/x/sys v0.43.0
)
require (
filippo.io/edwards25519 v1.1.0 // indirect
github.com/alecthomas/atomic v0.1.0-alpha2 // indirect
github.com/anacrolix/chansync v0.3.0 // indirect
github.com/anacrolix/generics v0.0.0-20230816105729-c755655aee45 // indirect
github.com/anacrolix/log v0.15.2 // indirect
github.com/anacrolix/missinggo v1.3.0 // indirect
github.com/anacrolix/missinggo/perf v1.0.0 // indirect
github.com/anacrolix/missinggo/v2 v2.7.1 // indirect
github.com/anacrolix/multiless v0.3.1-0.20221221005021-2d12701f83f7 // indirect
github.com/anacrolix/stm v0.4.1-0.20221221005312-96d17df0e496 // indirect
github.com/anacrolix/sync v0.4.0 // indirect
github.com/anacrolix/torrent v1.48.1-0.20230103142631-c20f73d53e9f // indirect
github.com/andybalholm/brotli v1.0.6 // indirect
github.com/benbjohnson/immutable v0.4.1-0.20221220213129-8932b999621d // indirect
github.com/bradfitz/iter v0.0.0-20191230175014-e8f45d346db8 // indirect
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
github.com/edsrzf/mmap-go v1.1.0 // indirect
github.com/google/go-cmp v0.7.0 // indirect
github.com/huandu/xstrings v1.3.2 // indirect
github.com/klauspost/compress v1.18.1 // indirect
github.com/oschwald/maxminddb-golang v1.13.1 // indirect
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
github.com/refraction-networking/utls v1.8.2 // indirect
github.com/rogpeppe/go-internal v1.14.1 // indirect
github.com/rs/dnscache v0.0.0-20211102005908-e0241e321417 // indirect
github.com/stretchr/testify v1.11.1 // indirect
golang.org/x/exp v0.0.0-20250620022241-b7579e27df2b // indirect
golang.org/x/sync v0.20.0 // indirect
golang.org/x/time v0.14.0 // indirect
)
// Retracted: these three carry a session "goodbye" that tore down live links.
// It was meant to stop a dropped UDP session leaving the far side with a ghost
// (a datagram carrier has no FIN), but it also killed sessions that should have
// lived: a test that ran 5/5 at a steady 16.17s went 0.2s / 7.3s / hang with it
// in. It was aimed at the wrong target too — nothing was closing those sessions;
// their packets were being silently discarded by a stream buffer nobody could
// see filling. Reverted in v0.8.6, root cause fixed in v0.8.8.
//
// v0.8.4 additionally shipped with a failing test suite: the release command
// chained on a pipeline whose exit status came from `tail`, not from `go test`.
retract (
v0.8.5 // same
v0.8.4 // same, and released with a failing test suite
v0.8.3 // session goodbye tears down live links
)