diff --git a/client/go.mod b/client/go.mod index 337dd0fd..949bcd38 100644 --- a/client/go.mod +++ b/client/go.mod @@ -1,5 +1,8 @@ module github.com/anytypeio/go-anytype-infrastructure-experiments/client +replace github.com/anytypeio/go-anytype-infrastructure-experiments/common => ../common + + go 1.19 require ( diff --git a/consensus/go.mod b/consensus/go.mod index 20f74a6c..9889f33e 100644 --- a/consensus/go.mod +++ b/consensus/go.mod @@ -2,6 +2,8 @@ module github.com/anytypeio/go-anytype-infrastructure-experiments/consensus go 1.19 +replace github.com/anytypeio/go-anytype-infrastructure-experiments/common => ../common + require ( github.com/cheggaaa/mb/v2 v2.0.1 github.com/gogo/protobuf v1.3.2 diff --git a/node/go.mod b/node/go.mod index 2f7fbf87..a4bd1708 100644 --- a/node/go.mod +++ b/node/go.mod @@ -2,9 +2,11 @@ module github.com/anytypeio/go-anytype-infrastructure-experiments/node go 1.19 +replace github.com/anytypeio/go-anytype-infrastructure-experiments/common => ../common + require ( github.com/akrylysov/pogreb v0.10.1 - github.com/anytypeio/go-anytype-infrastructure-experiments/common v0.0.0-20221017151100-09e3eb3e548d + github.com/anytypeio/go-anytype-infrastructure-experiments/common v0.0.0-00010101000000-000000000000 go.uber.org/zap v1.23.0 ) diff --git a/node/go.sum b/node/go.sum index 7f6ad456..4cbd9bb1 100644 --- a/node/go.sum +++ b/node/go.sum @@ -42,8 +42,6 @@ github.com/alecthomas/template v0.0.0-20190718012654-fb15b899a751/go.mod h1:LOuy github.com/alecthomas/units v0.0.0-20151022065526-2efee857e7cf/go.mod h1:ybxpYRFXyAe+OPACYpWeL0wqObRcbAqCMya13uyzqw0= github.com/alecthomas/units v0.0.0-20190717042225-c3de453c63f4/go.mod h1:ybxpYRFXyAe+OPACYpWeL0wqObRcbAqCMya13uyzqw0= github.com/alecthomas/units v0.0.0-20190924025748-f65c72e2690d/go.mod h1:rBZYJk541a8SKzHPHnH3zbiI+7dagKZ0cgpgrD7Fyho= -github.com/anytypeio/go-anytype-infrastructure-experiments/common v0.0.0-20221017151100-09e3eb3e548d h1:m/dvM+rMsFDxoTHP6sF537m9AOeVsclYXsai6rC2Dg0= -github.com/anytypeio/go-anytype-infrastructure-experiments/common v0.0.0-20221017151100-09e3eb3e548d/go.mod h1:K8qY7wHmuMa9KN9aPpiM+1ij7v2jJID2eKguj5gB/EM= github.com/anytypeio/go-chash v0.0.0-20220629194632-4ad1154fe232 h1:kMPPZYmJgbs4AJfodbg2OCXg5cp+9LPAJcLZJqmcghk= github.com/anytypeio/go-chash v0.0.0-20220629194632-4ad1154fe232/go.mod h1:+PeHBAWp7gUh/yw6uAauKc5ku0w4cFNg6DUddGxoGq0= github.com/awalterschulze/gographviz v2.0.3+incompatible h1:9sVEXJBJLwGX7EQVhLm2elIKCm7P2YHFC8v6096G09E= diff --git a/util/go.mod b/util/go.mod index a8a10ff3..917d8ea2 100644 --- a/util/go.mod +++ b/util/go.mod @@ -2,6 +2,10 @@ module github.com/anytypeio/go-anytype-infrastructure-experiments/util go 1.19 +replace github.com/anytypeio/go-anytype-infrastructure-experiments/common => ../common + +replace github.com/anytypeio/go-anytype-infrastructure-experiments/consensus => ../consensus + require ( github.com/akrylysov/pogreb v0.10.1 github.com/anytypeio/go-anytype-infrastructure-experiments/common v0.0.0-00010101000000-000000000000