2023-02-23 17:49:45 +00:00
|
|
|
module gh.tarampamp.am/error-pages
|
2021-09-29 15:38:50 +00:00
|
|
|
|
2023-02-02 09:09:29 +00:00
|
|
|
go 1.20
|
2021-09-29 15:38:50 +00:00
|
|
|
|
|
|
|
require (
|
2023-02-23 17:49:45 +00:00
|
|
|
github.com/a8m/envsubst v1.4.2
|
2023-04-02 02:23:55 +00:00
|
|
|
github.com/fasthttp/router v1.4.18
|
2023-04-02 02:19:27 +00:00
|
|
|
github.com/fatih/color v1.15.0
|
2021-09-29 15:38:50 +00:00
|
|
|
github.com/kami-zh/go-capturer v0.0.0-20171211120116-e492ea43421d
|
2021-10-01 11:58:48 +00:00
|
|
|
github.com/pkg/errors v0.9.1
|
2023-05-02 03:46:37 +00:00
|
|
|
github.com/prometheus/client_golang v1.15.0
|
2022-11-01 21:27:39 +00:00
|
|
|
github.com/prometheus/client_model v0.3.0
|
2023-03-02 03:49:08 +00:00
|
|
|
github.com/stretchr/testify v1.8.2
|
2023-05-04 11:20:25 +00:00
|
|
|
github.com/urfave/cli/v2 v2.25.3
|
2023-05-02 03:46:09 +00:00
|
|
|
github.com/valyala/fasthttp v1.47.0
|
2023-04-02 02:27:23 +00:00
|
|
|
go.uber.org/automaxprocs v1.5.2
|
2023-03-02 03:48:33 +00:00
|
|
|
go.uber.org/goleak v1.2.1
|
2022-12-02 06:09:55 +00:00
|
|
|
go.uber.org/zap v1.24.0
|
2022-07-02 10:58:56 +00:00
|
|
|
gopkg.in/yaml.v3 v3.0.1
|
2021-09-29 15:38:50 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
require (
|
2023-02-23 17:49:45 +00:00
|
|
|
github.com/andybalholm/brotli v1.0.5 // indirect
|
2022-01-28 15:42:08 +00:00
|
|
|
github.com/beorn7/perks v1.0.1 // indirect
|
2023-02-23 17:49:45 +00:00
|
|
|
github.com/cespare/xxhash/v2 v2.2.0 // indirect
|
2023-01-29 10:54:56 +00:00
|
|
|
github.com/cpuguy83/go-md2man/v2 v2.0.2 // indirect
|
2021-09-29 15:38:50 +00:00
|
|
|
github.com/davecgh/go-spew v1.1.1 // indirect
|
2023-05-02 03:46:37 +00:00
|
|
|
github.com/golang/protobuf v1.5.3 // indirect
|
2023-04-02 02:19:54 +00:00
|
|
|
github.com/klauspost/compress v1.16.3 // indirect
|
2023-02-23 17:49:45 +00:00
|
|
|
github.com/kr/text v0.2.0 // indirect
|
2023-02-02 03:22:15 +00:00
|
|
|
github.com/mattn/go-colorable v0.1.13 // indirect
|
|
|
|
github.com/mattn/go-isatty v0.0.17 // indirect
|
2023-02-23 17:49:45 +00:00
|
|
|
github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect
|
2021-09-29 15:38:50 +00:00
|
|
|
github.com/pmezard/go-difflib v1.0.0 // indirect
|
2023-05-02 03:46:37 +00:00
|
|
|
github.com/prometheus/common v0.42.0 // indirect
|
2023-02-23 17:49:45 +00:00
|
|
|
github.com/prometheus/procfs v0.9.0 // indirect
|
2023-05-02 03:46:37 +00:00
|
|
|
github.com/rogpeppe/go-internal v1.10.0 // indirect
|
2023-01-29 10:54:56 +00:00
|
|
|
github.com/russross/blackfriday/v2 v2.1.0 // indirect
|
2023-02-23 17:49:45 +00:00
|
|
|
github.com/savsgio/gotils v0.0.0-20230208104028-c358bd845dee // indirect
|
2021-09-29 15:38:50 +00:00
|
|
|
github.com/valyala/bytebufferpool v1.0.0 // indirect
|
2023-01-29 10:54:56 +00:00
|
|
|
github.com/xrash/smetrics v0.0.0-20201216005158-039620a65673 // indirect
|
2023-02-23 17:49:45 +00:00
|
|
|
go.uber.org/atomic v1.10.0 // indirect
|
|
|
|
go.uber.org/multierr v1.9.0 // indirect
|
2023-04-02 02:19:27 +00:00
|
|
|
golang.org/x/sys v0.6.0 // indirect
|
2023-05-02 03:46:37 +00:00
|
|
|
google.golang.org/protobuf v1.30.0 // indirect
|
2021-09-29 15:38:50 +00:00
|
|
|
)
|