Skip to content

Commit bf91878

Browse files
Jobsbyctlong
authored andcommitted
Using xxhash v2
1 parent 33b13f2 commit bf91878

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

src/go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ require (
1212
code.cloudfoundry.org/tlsconfig v0.10.0
1313
github.com/Benjamintf1/unmarshalledmatchers v0.0.0-20190408201839-bb1c1f34eaea
1414
github.com/benbjohnson/jmphash v0.0.0-20141216154655-2d58f234cd86
15-
github.com/cespare/xxhash v1.1.0
15+
github.com/cespare/xxhash v1.1.0 // indirect
1616
github.com/cloudfoundry/gosigar v1.3.77
1717
github.com/dvsekhvalnov/jose2go v1.8.0
1818
github.com/emirpasic/gods v1.18.1
@@ -32,6 +32,7 @@ require (
3232
require (
3333
code.cloudfoundry.org/go-log-cache/v3 v3.0.3
3434
code.cloudfoundry.org/go-loggregator/v10 v10.0.1
35+
github.com/cespare/xxhash/v2 v2.3.0
3536
github.com/go-chi/chi/v5 v5.1.0
3637
github.com/shirou/gopsutil/v4 v4.24.11
3738
)
@@ -43,7 +44,6 @@ require (
4344
github.com/benjamintf1/unmarshalledmatchers v0.0.0-20190408201839-bb1c1f34eaea // indirect
4445
github.com/beorn7/perks v1.0.1 // indirect
4546
github.com/blang/semver/v4 v4.0.0 // indirect
46-
github.com/cespare/xxhash/v2 v2.3.0 // indirect
4747
github.com/ebitengine/purego v0.8.1 // indirect
4848
github.com/edsrzf/mmap-go v1.2.0 // indirect
4949
github.com/go-kit/kit v0.13.0 // indirect

src/internal/routing/routing_table.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"errors"
55

66
"github.com/benbjohnson/jmphash"
7-
"github.com/cespare/xxhash"
7+
"github.com/cespare/xxhash/v2"
88
)
99

1010
// RoutingTable makes decisions for where a item should be routed.

src/vendor/github.com/prometheus/prometheus/pkg/labels/labels.go

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/vendor/github.com/prometheus/prometheus/tsdb/labels/labels.go

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)