-
Notifications
You must be signed in to change notification settings - Fork 2
/
go.mod
43 lines (40 loc) · 1.6 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
33
34
35
36
37
38
39
40
41
42
43
module go.brendoncarroll.net/p2p
go 1.21
require (
github.com/flynn/noise v1.0.0
github.com/golang/protobuf v1.5.3
github.com/pkg/errors v0.9.1
github.com/quic-go/quic-go v0.37.4
github.com/spf13/cobra v0.0.5
github.com/stretchr/testify v1.8.4
go.brendoncarroll.net/exp v0.0.0-20241118183830-280772e567eb
go.brendoncarroll.net/state v0.0.0-20241118200920-627c9c196901
go.brendoncarroll.net/stdctx v0.0.0-20241118190518-40d09f4d11e7
go.brendoncarroll.net/tai64 v0.0.0-20241118171318-6e12d283d5e4
go.uber.org/zap v1.24.0
golang.org/x/crypto v0.9.0
golang.org/x/exp v0.0.0-20230522175609-2e198f4a06a1
golang.org/x/sync v0.2.0
golang.zx2c4.com/wireguard v0.0.0-20220920152132-bb719d3a6e2c
google.golang.org/protobuf v1.28.0
)
require (
github.com/companyzero/sntrup4591761 v0.0.0-20220309191932-9e0f3af2f07a // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/go-task/slim-sprig v0.0.0-20230315185526-52ccab3ef572 // indirect
github.com/golang/mock v1.6.0 // indirect
github.com/google/gofuzz v1.2.0 // indirect
github.com/google/pprof v0.0.0-20210407192527-94a9f03dee38 // indirect
github.com/inconshreveable/mousetrap v1.0.0 // indirect
github.com/onsi/ginkgo/v2 v2.9.5 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/quic-go/qtls-go1-20 v0.3.1 // indirect
github.com/spf13/pflag v1.0.3 // indirect
go.uber.org/atomic v1.7.0 // indirect
go.uber.org/multierr v1.6.0 // indirect
golang.org/x/mod v0.10.0 // indirect
golang.org/x/net v0.10.0 // indirect
golang.org/x/sys v0.8.0 // indirect
golang.org/x/tools v0.9.1 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)