-
Notifications
You must be signed in to change notification settings - Fork 71
Expand file tree
/
Copy pathgo.mod
More file actions
31 lines (27 loc) · 846 Bytes
/
go.mod
File metadata and controls
31 lines (27 loc) · 846 Bytes
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
module github.com/sardanioss/httpcloak
go 1.26.0
retract (
v1.4.0 // Published prematurely, use v1.1.x instead
v1.3.0 // Published prematurely, use v1.1.x instead
v1.2.0 // Published prematurely, use v1.1.x instead
)
require (
github.com/andybalholm/brotli v1.2.0
github.com/klauspost/compress v1.18.2
github.com/miekg/dns v1.1.69
github.com/sardanioss/http v1.2.0
github.com/sardanioss/net v1.2.6
github.com/sardanioss/quic-go v1.2.24
github.com/sardanioss/udpbara v1.1.0
github.com/sardanioss/utls v1.10.3
golang.org/x/net v0.48.0
)
require (
github.com/sardanioss/qpack v0.6.3 // indirect
golang.org/x/crypto v0.46.0 // indirect
golang.org/x/mod v0.30.0 // indirect
golang.org/x/sync v0.19.0 // indirect
golang.org/x/sys v0.39.0 // indirect
golang.org/x/text v0.32.0 // indirect
golang.org/x/tools v0.39.0 // indirect
)