-
Notifications
You must be signed in to change notification settings - Fork 37
/
go.mod
26 lines (23 loc) · 787 Bytes
/
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
module github.com/dgrr/http2
go 1.20
require (
github.com/stretchr/testify v1.8.4
github.com/summerwind/h2spec v2.2.1+incompatible
github.com/valyala/fasthttp v1.50.0
github.com/valyala/fastrand v1.1.0
golang.org/x/crypto v0.14.0
golang.org/x/net v0.17.0
)
require (
github.com/andybalholm/brotli v1.0.6 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/fatih/color v1.15.0 // indirect
github.com/klauspost/compress v1.17.2 // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.20 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/valyala/bytebufferpool v1.0.0 // indirect
golang.org/x/sys v0.13.0 // indirect
golang.org/x/text v0.13.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)