diff options
author | Keuin <[email protected]> | 2024-02-13 16:34:35 +0800 |
---|---|---|
committer | Keuin <[email protected]> | 2024-02-15 01:53:10 +0800 |
commit | 36bfa4aa45c8dd16e724c36684b69d8023115b76 (patch) | |
tree | bcee878981d1af49f658b305cbf05560b129efee /go.mod | |
parent | a89cbe5a93aede3703cd5981ea71827b55db0866 (diff) |
Diffstat (limited to 'go.mod')
-rw-r--r-- | go.mod | 17 |
1 files changed, 12 insertions, 5 deletions
@@ -8,6 +8,7 @@ require ( github.com/avast/retry-go v3.0.0+incompatible github.com/gin-gonic/gin v1.9.1 github.com/imroc/req v0.3.2 + github.com/prometheus/client_golang v1.18.0 github.com/rs/zerolog v1.32.0 github.com/samber/lo v1.39.0 github.com/samber/mo v1.11.0 @@ -15,7 +16,9 @@ require ( ) require ( + github.com/beorn7/perks v1.0.1 // indirect github.com/bytedance/sonic v1.9.1 // indirect + github.com/cespare/xxhash/v2 v2.2.0 // indirect github.com/chenzhuoyu/base64x v0.0.0-20221115062448-fe3a3abad311 // indirect github.com/gabriel-vasile/mimetype v1.4.2 // indirect github.com/gin-contrib/sse v0.1.0 // indirect @@ -29,17 +32,21 @@ require ( github.com/leodido/go-urn v1.2.4 // indirect github.com/mattn/go-colorable v0.1.13 // indirect github.com/mattn/go-isatty v0.0.19 // indirect + github.com/matttproud/golang_protobuf_extensions/v2 v2.0.0 // indirect github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect github.com/modern-go/reflect2 v1.0.2 // indirect github.com/pelletier/go-toml/v2 v2.0.8 // indirect + github.com/prometheus/client_model v0.5.0 // indirect + github.com/prometheus/common v0.45.0 // indirect + github.com/prometheus/procfs v0.12.0 // indirect github.com/twitchyliquid64/golang-asm v0.15.1 // indirect github.com/ugorji/go/codec v1.2.11 // indirect golang.org/x/arch v0.3.0 // indirect - golang.org/x/crypto v0.9.0 // indirect + golang.org/x/crypto v0.14.0 // indirect golang.org/x/exp v0.0.0-20220303212507-bbda1eaf7a17 // indirect - golang.org/x/net v0.10.0 // indirect - golang.org/x/sys v0.12.0 // indirect - golang.org/x/text v0.9.0 // indirect - google.golang.org/protobuf v1.30.0 // indirect + golang.org/x/net v0.17.0 // indirect + golang.org/x/sys v0.15.0 // indirect + golang.org/x/text v0.13.0 // indirect + google.golang.org/protobuf v1.31.0 // indirect gopkg.in/yaml.v3 v3.0.1 // indirect ) |