Skip to content

Commit b196ae8

Browse files
committed
go.mod: bump go-immutable-radix to v1.3.1
Fixes errors in tooling that relies on the existing `go.mod` file: ``` pkg/darwin_arm64/github.com/armon/go-metrics/metrics.go, line 8, column 2: could not import github.com/hashicorp/go-immutable-radix (open : no such file or directory) pkg/darwin_arm64/github.com/armon/go-metrics/metrics.go, line 166, column 13: undefined: iradix pkg/darwin_arm64/github.com/armon/go-metrics/start.go, line 37, column 17: undefined: iradix ```
1 parent 70e93f8 commit b196ae8

File tree

2 files changed

+55
-153
lines changed

2 files changed

+55
-153
lines changed

go.mod

Lines changed: 21 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,31 @@ module github.com/hashicorp/go-metrics
33
go 1.12
44

55
require (
6-
github.com/DataDog/datadog-go v3.2.0+incompatible
6+
github.com/DataDog/datadog-go v4.8.3+incompatible
77
github.com/circonus-labs/circonus-gometrics v2.3.1+incompatible
8-
github.com/circonus-labs/circonusllhist v0.1.3 // indirect
9-
github.com/golang/protobuf v1.4.3
8+
github.com/golang/protobuf v1.5.4
109
github.com/hashicorp/go-immutable-radix v1.3.1
10+
github.com/pascaldekloe/goe v0.1.1
11+
github.com/prometheus/client_golang v1.19.1
12+
github.com/prometheus/client_model v0.6.1
13+
github.com/prometheus/common v0.55.0
14+
)
15+
16+
require (
17+
github.com/Microsoft/go-winio v0.6.2 // indirect
18+
github.com/beorn7/perks v1.0.1 // indirect
19+
github.com/cespare/xxhash/v2 v2.2.0 // indirect
20+
github.com/circonus-labs/circonusllhist v0.1.3 // indirect
21+
github.com/hashicorp/go-cleanhttp v0.5.0 // indirect
1122
github.com/hashicorp/go-retryablehttp v0.5.3 // indirect
12-
github.com/pascaldekloe/goe v0.1.0
13-
github.com/prometheus/client_golang v1.11.1
14-
github.com/prometheus/client_model v0.2.0
15-
github.com/prometheus/common v0.26.0
23+
github.com/hashicorp/golang-lru v0.5.1 // indirect
24+
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
25+
github.com/pkg/errors v0.9.1 // indirect
26+
github.com/prometheus/procfs v0.15.1 // indirect
27+
github.com/stretchr/objx v0.5.2 // indirect
1628
github.com/tv42/httpunix v0.0.0-20150427012821-b75d8614f926 // indirect
29+
golang.org/x/sys v0.21.0 // indirect
30+
google.golang.org/protobuf v1.34.2 // indirect
1731
)
1832

1933
// Introduced undocumented breaking change to metrics sink interface

0 commit comments

Comments
 (0)