2021-09-29 15:38:50 +00:00
|
|
|
module github.com/tarampampam/error-pages
|
|
|
|
|
2022-08-24 17:38:26 +00:00
|
|
|
go 1.19
|
2021-09-29 15:38:50 +00:00
|
|
|
|
|
|
|
require (
|
2021-12-02 04:51:26 +00:00
|
|
|
github.com/a8m/envsubst v1.3.0
|
2022-10-02 05:28:04 +00:00
|
|
|
github.com/fasthttp/router v1.4.12
|
2021-10-01 12:10:23 +00:00
|
|
|
github.com/fatih/color v1.13.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
|
2022-09-02 02:52:41 +00:00
|
|
|
github.com/prometheus/client_golang v1.13.0
|
2022-01-28 15:42:08 +00:00
|
|
|
github.com/prometheus/client_model v0.2.0
|
2022-07-02 11:02:45 +00:00
|
|
|
github.com/spf13/cobra v1.5.0
|
2021-09-29 15:38:50 +00:00
|
|
|
github.com/spf13/pflag v1.0.5
|
2022-07-02 10:58:56 +00:00
|
|
|
github.com/stretchr/testify v1.8.0
|
2022-10-02 02:22:55 +00:00
|
|
|
github.com/valyala/fasthttp v1.40.0
|
2022-09-02 02:57:20 +00:00
|
|
|
go.uber.org/zap v1.23.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 (
|
2022-01-29 07:46:47 +00:00
|
|
|
github.com/andybalholm/brotli v1.0.4 // indirect
|
2022-01-28 15:42:08 +00:00
|
|
|
github.com/beorn7/perks v1.0.1 // indirect
|
|
|
|
github.com/cespare/xxhash/v2 v2.1.2 // indirect
|
2021-09-29 15:38:50 +00:00
|
|
|
github.com/davecgh/go-spew v1.1.1 // indirect
|
2022-01-28 15:42:08 +00:00
|
|
|
github.com/golang/protobuf v1.5.2 // indirect
|
2021-09-29 15:38:50 +00:00
|
|
|
github.com/inconshreveable/mousetrap v1.0.0 // indirect
|
2022-03-19 11:33:19 +00:00
|
|
|
github.com/klauspost/compress v1.15.0 // indirect
|
2022-01-02 07:25:37 +00:00
|
|
|
github.com/mattn/go-colorable v0.1.12 // indirect
|
2021-10-01 12:10:23 +00:00
|
|
|
github.com/mattn/go-isatty v0.0.14 // indirect
|
2022-01-28 15:42:08 +00:00
|
|
|
github.com/matttproud/golang_protobuf_extensions v1.0.1 // indirect
|
2021-09-29 15:38:50 +00:00
|
|
|
github.com/pmezard/go-difflib v1.0.0 // indirect
|
2022-09-02 02:52:41 +00:00
|
|
|
github.com/prometheus/common v0.37.0 // indirect
|
|
|
|
github.com/prometheus/procfs v0.8.0 // indirect
|
2022-07-02 10:59:19 +00:00
|
|
|
github.com/savsgio/gotils v0.0.0-20220530130905-52f3993e8d6d // indirect
|
2021-09-29 15:38:50 +00:00
|
|
|
github.com/valyala/bytebufferpool v1.0.0 // indirect
|
|
|
|
go.uber.org/atomic v1.7.0 // indirect
|
|
|
|
go.uber.org/multierr v1.6.0 // indirect
|
2022-07-26 17:49:19 +00:00
|
|
|
golang.org/x/sys v0.0.0-20220722155257-8c9f86f7a55f // indirect
|
2022-09-02 02:52:41 +00:00
|
|
|
google.golang.org/protobuf v1.28.1 // indirect
|
2021-09-29 15:38:50 +00:00
|
|
|
)
|