forked from snowmerak/lux
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgo.mod
35 lines (32 loc) · 1.09 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
module github.com/serve-it-yourself/lux
go 1.20
require (
github.com/Workiva/go-datastructures v1.1.0
github.com/andybalholm/brotli v1.0.5
github.com/caddyserver/certmagic v0.18.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
golang.org/x/net v0.12.0
google.golang.org/protobuf v1.31.0
)
require (
github.com/gobwas/httphead v0.1.0 // indirect
github.com/gobwas/pool v0.2.1 // indirect
github.com/klauspost/cpuid/v2 v2.2.5 // indirect
github.com/libdns/libdns v0.2.1 // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.19 // indirect
github.com/mholt/acmez v1.2.0 // indirect
github.com/miekg/dns v1.1.55 // 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.11.0 // indirect
golang.org/x/mod v0.12.0 // indirect
golang.org/x/sys v0.10.0 // indirect
golang.org/x/text v0.11.0 // indirect
golang.org/x/tools v0.11.0 // indirect
)