-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathgo.mod
38 lines (35 loc) · 1.24 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
module github.com/snowmerak/lux/v3
go 1.20
require (
github.com/andybalholm/brotli v1.0.5
github.com/caddyserver/certmagic v0.17.2
github.com/gobwas/ws v1.2.1
github.com/golang-jwt/jwt/v5 v5.0.0
github.com/golang/snappy v0.0.4
github.com/julienschmidt/httprouter v1.3.0
github.com/rs/zerolog v1.29.1
github.com/urfave/cli/v2 v2.27.1
golang.org/x/net v0.10.0
golang.org/x/tools v0.9.1
google.golang.org/protobuf v1.30.0
)
require (
github.com/cpuguy83/go-md2man/v2 v2.0.2 // indirect
github.com/gobwas/httphead v0.1.0 // indirect
github.com/gobwas/pool v0.2.1 // indirect
github.com/klauspost/cpuid/v2 v2.2.4 // indirect
github.com/libdns/libdns v0.2.1 // indirect
github.com/mattn/go-colorable v0.1.12 // indirect
github.com/mattn/go-isatty v0.0.14 // indirect
github.com/mholt/acmez v1.1.1 // indirect
github.com/miekg/dns v1.1.54 // indirect
github.com/russross/blackfriday/v2 v2.1.0 // indirect
github.com/xrash/smetrics v0.0.0-20201216005158-039620a65673 // indirect
go.uber.org/atomic v1.11.0 // indirect
go.uber.org/multierr v1.11.0 // indirect
go.uber.org/zap v1.24.0 // indirect
golang.org/x/crypto v0.9.0 // indirect
golang.org/x/mod v0.10.0 // indirect
golang.org/x/sys v0.8.0 // indirect
golang.org/x/text v0.9.0 // indirect
)