2023-02-23 17:49:45 +00:00
|
|
|
module gh.tarampamp.am/error-pages
|
2021-09-29 15:38:50 +00:00
|
|
|
|
2023-09-02 14:17:15 +00:00
|
|
|
go 1.21
|
2021-09-29 15:38:50 +00:00
|
|
|
|
|
|
|
require (
|
2023-02-23 17:49:45 +00:00
|
|
|
github.com/a8m/envsubst v1.4.2
|
2024-06-01 22:25:44 +00:00
|
|
|
github.com/fasthttp/router v1.5.1
|
|
|
|
github.com/fatih/color v1.17.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
|
2024-06-01 22:25:44 +00:00
|
|
|
github.com/prometheus/client_golang v1.19.1
|
2024-04-27 10:35:10 +00:00
|
|
|
github.com/prometheus/client_model v0.6.1
|
2024-03-01 22:08:05 +00:00
|
|
|
github.com/stretchr/testify v1.9.0
|
2024-05-01 22:26:10 +00:00
|
|
|
github.com/urfave/cli/v2 v2.27.2
|
2024-07-01 22:58:20 +00:00
|
|
|
github.com/valyala/fasthttp v1.55.0
|
2023-08-02 06:38:58 +00:00
|
|
|
go.uber.org/automaxprocs v1.5.3
|
2023-11-01 22:18:58 +00:00
|
|
|
go.uber.org/goleak v1.3.0
|
2024-03-01 22:06:30 +00:00
|
|
|
go.uber.org/zap v1.27.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 (
|
2024-03-01 22:08:32 +00:00
|
|
|
github.com/andybalholm/brotli v1.1.0 // 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
|
2024-05-01 22:26:10 +00:00
|
|
|
github.com/cpuguy83/go-md2man/v2 v2.0.4 // indirect
|
2021-09-29 15:38:50 +00:00
|
|
|
github.com/davecgh/go-spew v1.1.1 // indirect
|
2024-07-01 22:58:20 +00:00
|
|
|
github.com/klauspost/compress v1.17.9 // indirect
|
2023-02-02 03:22:15 +00:00
|
|
|
github.com/mattn/go-colorable v0.1.13 // indirect
|
2023-12-01 22:36:13 +00:00
|
|
|
github.com/mattn/go-isatty v0.0.20 // indirect
|
2021-09-29 15:38:50 +00:00
|
|
|
github.com/pmezard/go-difflib v1.0.0 // indirect
|
2024-03-16 16:46:45 +00:00
|
|
|
github.com/prometheus/common v0.50.0 // indirect
|
|
|
|
github.com/prometheus/procfs v0.13.0 // indirect
|
2023-01-29 10:54:56 +00:00
|
|
|
github.com/russross/blackfriday/v2 v2.1.0 // indirect
|
2024-03-16 15:11:42 +00:00
|
|
|
github.com/savsgio/gotils v0.0.0-20240303185622-093b76447511 // indirect
|
2021-09-29 15:38:50 +00:00
|
|
|
github.com/valyala/bytebufferpool v1.0.0 // indirect
|
2024-03-16 16:46:45 +00:00
|
|
|
github.com/xrash/smetrics v0.0.0-20240312152122-5f08fbb34913 // indirect
|
|
|
|
go.uber.org/multierr v1.11.0 // indirect
|
2024-07-01 22:58:20 +00:00
|
|
|
golang.org/x/sys v0.21.0 // indirect
|
2024-03-16 16:46:45 +00:00
|
|
|
google.golang.org/protobuf v1.33.0 // indirect
|
2021-09-29 15:38:50 +00:00
|
|
|
)
|