Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Using xxhash v2 #577

Merged
merged 1 commit into from
Dec 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ require (
code.cloudfoundry.org/tlsconfig v0.10.0
github.com/Benjamintf1/unmarshalledmatchers v0.0.0-20190408201839-bb1c1f34eaea
github.com/benbjohnson/jmphash v0.0.0-20141216154655-2d58f234cd86
github.com/cespare/xxhash v1.1.0
github.com/cespare/xxhash v1.1.0 // indirect
github.com/cloudfoundry/gosigar v1.3.77
github.com/dvsekhvalnov/jose2go v1.8.0
github.com/emirpasic/gods v1.18.1
Expand All @@ -32,6 +32,7 @@ require (
require (
code.cloudfoundry.org/go-log-cache/v3 v3.0.3
code.cloudfoundry.org/go-loggregator/v10 v10.0.1
github.com/cespare/xxhash/v2 v2.3.0
github.com/go-chi/chi/v5 v5.1.0
github.com/shirou/gopsutil/v4 v4.24.10
)
Expand All @@ -43,7 +44,6 @@ require (
github.com/benjamintf1/unmarshalledmatchers v0.0.0-20190408201839-bb1c1f34eaea // indirect
github.com/beorn7/perks v1.0.1 // indirect
github.com/blang/semver/v4 v4.0.0 // indirect
github.com/cespare/xxhash/v2 v2.3.0 // indirect
github.com/ebitengine/purego v0.8.1 // indirect
github.com/edsrzf/mmap-go v1.2.0 // indirect
github.com/go-kit/kit v0.13.0 // indirect
Expand Down
2 changes: 1 addition & 1 deletion src/internal/routing/routing_table.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"errors"

"github.com/benbjohnson/jmphash"
"github.com/cespare/xxhash"
"github.com/cespare/xxhash/v2"
)

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

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading