-
Notifications
You must be signed in to change notification settings - Fork 4
/
go.mod
36 lines (32 loc) · 1.16 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
module github.com/komuw/ong
go 1.21
require (
golang.org/x/crypto v0.12.0
golang.org/x/net v0.14.0
golang.org/x/sys v0.11.0
)
require (
github.com/google/go-cmp v0.5.9 // indirect
github.com/influxdata/tdigest v0.0.1 // indirect
github.com/josharian/intern v1.0.0 // indirect
github.com/mailru/easyjson v0.7.7 // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.19 // indirect
github.com/rs/dnscache v0.0.0-20230804202142-fc85eb664529 // indirect
github.com/tmthrgd/httputils v0.0.0-20190904060602-27fdf7d93acd // indirect
go.uber.org/multierr v1.11.0 // indirect
golang.org/x/exp v0.0.0-20230807204917-050eac23e9de // indirect
golang.org/x/sync v0.3.0 // indirect
golang.org/x/text v0.12.0 // indirect
)
require (
github.com/NYTimes/gziphandler v1.1.1 // test
github.com/klauspost/compress v1.16.7 // test
github.com/rs/zerolog v1.30.0 // test
github.com/sirupsen/logrus v1.9.3 // test
github.com/tmthrgd/gziphandler v0.0.0-20210130054451-9e3dc377f14f // test
github.com/tsenart/vegeta/v12 v12.11.0 // test
go.akshayshah.org/attest v1.0.2 // test
go.uber.org/goleak v1.2.1 // test
go.uber.org/zap v1.25.0 // test
)