error-pages/go.mod

42 lines
1.5 KiB
Modula-2
Raw Normal View History

module gh.tarampamp.am/error-pages
2021-09-29 15:38:50 +00:00
go 1.21
2021-09-29 15:38:50 +00:00
require (
github.com/a8m/envsubst v1.4.2
build(deps): bump the gomod group with 4 updates Bumps the gomod group with 4 updates: [github.com/fasthttp/router](https://github.com/fasthttp/router), [github.com/fatih/color](https://github.com/fatih/color), [github.com/prometheus/client_golang](https://github.com/prometheus/client_golang) and [github.com/valyala/fasthttp](https://github.com/valyala/fasthttp). Updates `github.com/fasthttp/router` from 1.5.0 to 1.5.1 - [Release notes](https://github.com/fasthttp/router/releases) - [Commits](https://github.com/fasthttp/router/compare/v1.5.0...v1.5.1) Updates `github.com/fatih/color` from 1.16.0 to 1.17.0 - [Release notes](https://github.com/fatih/color/releases) - [Commits](https://github.com/fatih/color/compare/v1.16.0...v1.17.0) Updates `github.com/prometheus/client_golang` from 1.19.0 to 1.19.1 - [Release notes](https://github.com/prometheus/client_golang/releases) - [Changelog](https://github.com/prometheus/client_golang/blob/main/CHANGELOG.md) - [Commits](https://github.com/prometheus/client_golang/compare/v1.19.0...v1.19.1) Updates `github.com/valyala/fasthttp` from 1.52.0 to 1.54.0 - [Release notes](https://github.com/valyala/fasthttp/releases) - [Commits](https://github.com/valyala/fasthttp/compare/v1.52.0...1.54.0) --- updated-dependencies: - dependency-name: github.com/fasthttp/router dependency-type: direct:production update-type: version-update:semver-patch dependency-group: gomod - dependency-name: github.com/fatih/color dependency-type: direct:production update-type: version-update:semver-minor dependency-group: gomod - dependency-name: github.com/prometheus/client_golang dependency-type: direct:production update-type: version-update:semver-patch dependency-group: gomod - dependency-name: github.com/valyala/fasthttp dependency-type: direct:production update-type: version-update:semver-minor dependency-group: gomod ... Signed-off-by: dependabot[bot] <support@github.com>
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
github.com/pkg/errors v0.9.1
build(deps): bump the gomod group with 4 updates Bumps the gomod group with 4 updates: [github.com/fasthttp/router](https://github.com/fasthttp/router), [github.com/fatih/color](https://github.com/fatih/color), [github.com/prometheus/client_golang](https://github.com/prometheus/client_golang) and [github.com/valyala/fasthttp](https://github.com/valyala/fasthttp). Updates `github.com/fasthttp/router` from 1.5.0 to 1.5.1 - [Release notes](https://github.com/fasthttp/router/releases) - [Commits](https://github.com/fasthttp/router/compare/v1.5.0...v1.5.1) Updates `github.com/fatih/color` from 1.16.0 to 1.17.0 - [Release notes](https://github.com/fatih/color/releases) - [Commits](https://github.com/fatih/color/compare/v1.16.0...v1.17.0) Updates `github.com/prometheus/client_golang` from 1.19.0 to 1.19.1 - [Release notes](https://github.com/prometheus/client_golang/releases) - [Changelog](https://github.com/prometheus/client_golang/blob/main/CHANGELOG.md) - [Commits](https://github.com/prometheus/client_golang/compare/v1.19.0...v1.19.1) Updates `github.com/valyala/fasthttp` from 1.52.0 to 1.54.0 - [Release notes](https://github.com/valyala/fasthttp/releases) - [Commits](https://github.com/valyala/fasthttp/compare/v1.52.0...1.54.0) --- updated-dependencies: - dependency-name: github.com/fasthttp/router dependency-type: direct:production update-type: version-update:semver-patch dependency-group: gomod - dependency-name: github.com/fatih/color dependency-type: direct:production update-type: version-update:semver-minor dependency-group: gomod - dependency-name: github.com/prometheus/client_golang dependency-type: direct:production update-type: version-update:semver-patch dependency-group: gomod - dependency-name: github.com/valyala/fasthttp dependency-type: direct:production update-type: version-update:semver-minor dependency-group: gomod ... Signed-off-by: dependabot[bot] <support@github.com>
2024-06-01 22:25:44 +00:00
github.com/prometheus/client_golang v1.19.1
github.com/prometheus/client_model v0.6.1
github.com/stretchr/testify v1.9.0
github.com/urfave/cli/v2 v2.27.2
github.com/valyala/fasthttp v1.55.0
go.uber.org/automaxprocs v1.5.3
go.uber.org/goleak v1.3.0
go.uber.org/zap v1.27.0
gopkg.in/yaml.v3 v3.0.1
2021-09-29 15:38:50 +00:00
)
require (
github.com/andybalholm/brotli v1.1.0 // indirect
2022-01-28 15:42:08 +00:00
github.com/beorn7/perks v1.0.1 // indirect
github.com/cespare/xxhash/v2 v2.2.0 // indirect
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
github.com/klauspost/compress v1.17.9 // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
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
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
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
github.com/xrash/smetrics v0.0.0-20240312152122-5f08fbb34913 // indirect
go.uber.org/multierr v1.11.0 // indirect
golang.org/x/sys v0.21.0 // indirect
google.golang.org/protobuf v1.33.0 // indirect
2021-09-29 15:38:50 +00:00
)