-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathgo.mod
More file actions
28 lines (24 loc) · 1.19 KB
/
Copy pathgo.mod
File metadata and controls
28 lines (24 loc) · 1.19 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
module potjs
go 1.24.5
// Pinned to the authors' own fork/tag, which has both the Iterate() fix and
// SwarmKvs.Size()/Iterate() (what potjs.go calls directly below - no local
// kvs.go needed) applied on top of it. See
// https://github.com/ethersphere/proximity-order-trie/pull/32 (the fix) and
// https://github.com/brainiac-five/potjs/pull/1 (this feature) - swap this
// back to an upstream tag once either lands and a release is cut.
replace github.com/ethersphere/proximity-order-trie => github.com/brainiac-8/proximity-order-trie v1.0.2-alpha.9
require github.com/ethersphere/proximity-order-trie v1.0.0
require (
github.com/beorn7/perks v1.0.1 // indirect
github.com/cespare/xxhash/v2 v2.2.0 // indirect
github.com/ethersphere/bee/v2 v2.5.0 // indirect
github.com/hashicorp/errwrap v1.0.0 // indirect
github.com/hashicorp/go-multierror v1.1.1 // indirect
github.com/prometheus/client_golang v1.18.0 // indirect
github.com/prometheus/client_model v0.6.0 // indirect
github.com/prometheus/common v0.47.0 // indirect
github.com/prometheus/procfs v0.12.0 // indirect
golang.org/x/crypto v0.23.0 // indirect
golang.org/x/sys v0.20.0 // indirect
google.golang.org/protobuf v1.33.0 // indirect
)