-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgo.mod
32 lines (23 loc) · 1.05 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
module github.com/aperturerobotics/entitygraph
go 1.23
toolchain go1.23.3
require github.com/aperturerobotics/controllerbus v0.49.0 // latest
// Note: the below is from the controllerbus go.mod
// This fork drops ecdsa, drops secp256k1, adds eddilithium2 and eddilithium3
replace github.com/libp2p/go-libp2p => github.com/aperturerobotics/go-libp2p v0.37.1-0.20241111002741-5cfbb50b74e0 // 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.20.3 // latest
github.com/aperturerobotics/json-iterator-lite v1.0.1-0.20240713111131-be6bf89c3008 // indirect; latest
github.com/aperturerobotics/protobuf-go-lite v0.8.0 // latest
github.com/aperturerobotics/util v1.27.1 // indirect; latest
)
require (
github.com/blang/semver/v4 v4.0.0
github.com/sirupsen/logrus v1.9.3
)
require (
github.com/pkg/errors v0.9.1 // indirect
golang.org/x/exp v0.0.0-20241217172543-b2144cdd0a67 // indirect
golang.org/x/sys v0.28.0 // indirect
)