-
Notifications
You must be signed in to change notification settings - Fork 0
/
go.mod
33 lines (24 loc) · 1.08 KB
/
go.mod
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
29
30
31
32
33
module github.com/aperturerobotics/entitygraph
go 1.22.0
toolchain go1.23.2
require github.com/aperturerobotics/controllerbus v0.47.7 // latest
// Note: the below is from the controllerbus go.mod
// Optional: this fork uses go-protobuf-lite and adds post-quantum crypto support.
replace github.com/libp2p/go-libp2p => github.com/aperturerobotics/go-libp2p v0.36.3-0.20241002070357-a2e1c3498dd3 // aperture
replace github.com/libp2p/go-msgio => github.com/aperturerobotics/go-libp2p-msgio v0.0.0-20240511033615-1b69178aa5c8 // aperture
require (
github.com/aperturerobotics/common v0.18.8 // latest
github.com/aperturerobotics/json-iterator-lite v1.0.0 // indirect; latest
github.com/aperturerobotics/protobuf-go-lite v0.7.0 // latest
github.com/aperturerobotics/util v1.25.9 // indirect; latest
)
require (
github.com/blang/semver/v4 v4.0.0
github.com/sirupsen/logrus v1.9.3
)
require (
github.com/cenkalti/backoff v2.2.1+incompatible // indirect
github.com/pkg/errors v0.9.1 // indirect
golang.org/x/exp v0.0.0-20240909161429-701f63a606c0 // indirect
golang.org/x/sys v0.25.0 // indirect
)