Skip to content

Commit

Permalink
fix(crawler/mirror): resolve mirror post logic
Browse files Browse the repository at this point in the history
  • Loading branch information
polebug committed Aug 16, 2023
1 parent 0af89d3 commit caa10d8
Show file tree
Hide file tree
Showing 4 changed files with 74 additions and 61 deletions.
29 changes: 18 additions & 11 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,13 @@ replace github.com/labstack/echo/v4 => github.com/labstack/echo/v4 v4.7.2

require (
github.com/Khan/genqlient v0.5.0
github.com/NaturalSelectionLabs/jschema v0.0.3
github.com/alecthomas/repr v0.1.0
github.com/avast/retry-go/v4 v4.3.3
github.com/avvydomains/golang-client v0.2.0
github.com/deckarep/golang-set v1.8.0
github.com/ethereum/go-ethereum v1.11.6
github.com/ethereum/go-ethereum v1.12.2
github.com/gabriel-vasile/mimetype v1.4.2
github.com/go-playground/validator/v10 v10.11.2
github.com/go-redis/redis/v8 v8.11.5
github.com/go-resty/resty/v2 v2.7.0
Expand All @@ -27,8 +29,9 @@ require (
github.com/labstack/echo-contrib v0.14.1
github.com/labstack/echo/v4 v4.10.2
github.com/lib/pq v1.10.9
github.com/naturalselectionlabs/kurora v0.57.1
github.com/naturalselectionlabs/kurora/client v0.0.0-20230731151015-49c021e888da
github.com/mattn/go-mastodon v0.0.6
github.com/naturalselectionlabs/kurora v0.59.0
github.com/naturalselectionlabs/kurora/client v0.0.0-20230816091615-85b927fdf31d
github.com/rabbitmq/amqp091-go v1.6.1
github.com/robfig/cron/v3 v3.0.1
github.com/samber/lo v1.38.1
Expand All @@ -51,27 +54,32 @@ require (
go.uber.org/multierr v1.11.0
go.uber.org/ratelimit v0.2.0
go.uber.org/zap v1.24.0
golang.org/x/exp v0.0.0-20230510235704-dd950f8aeaea
golang.org/x/exp v0.0.0-20230810033253-352e893a4cad
golang.org/x/net v0.10.0
golang.org/x/sync v0.1.0
golang.org/x/sync v0.3.0
gorm.io/driver/postgres v1.5.0
gorm.io/gorm v1.25.1
gotest.tools v2.2.0+incompatible
)

require (
github.com/NaturalSelectionLabs/jschema v0.0.3 // indirect
github.com/gabriel-vasile/mimetype v1.4.2 // indirect
github.com/bits-and-blooms/bitset v1.7.0 // indirect
github.com/consensys/bavard v0.1.13 // indirect
github.com/consensys/gnark-crypto v0.10.0 // indirect
github.com/crate-crypto/go-kzg-4844 v0.3.0 // indirect
github.com/ethereum/c-kzg-4844 v0.3.1 // indirect
github.com/go-openapi/jsonpointer v0.19.5 // indirect
github.com/go-openapi/swag v0.19.5 // indirect
github.com/invopop/yaml v0.1.0 // indirect
github.com/josharian/intern v1.0.0 // indirect
github.com/mailru/easyjson v0.7.7 // indirect
github.com/mattn/go-mastodon v0.0.6 // indirect
github.com/mmcloughlin/addchain v0.4.0 // indirect
github.com/mohae/deepcopy v0.0.0-20170929034955-c48cc78d4826 // indirect
github.com/perimeterx/marshmallow v1.1.4 // indirect
github.com/supranational/blst v0.3.11 // indirect
github.com/tomnomnom/linkheader v0.0.0-20180905144013-02ca5825eb80 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
rsc.io/tmplfunc v0.0.3 // indirect
)

require (
Expand All @@ -84,7 +92,6 @@ require (
github.com/deckarep/golang-set/v2 v2.3.0 // indirect
github.com/decred/dcrd/dcrec/secp256k1/v4 v4.2.0 // indirect
github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect
github.com/edsrzf/mmap-go v1.1.0 // indirect
github.com/fsnotify/fsnotify v1.6.0 // indirect
github.com/getkin/kin-openapi v0.116.0
github.com/go-logr/logr v1.2.3 // indirect
Expand All @@ -101,7 +108,7 @@ require (
github.com/gorilla/securecookie v1.1.1 // indirect
github.com/gorilla/sessions v1.2.1 // indirect
github.com/hashicorp/hcl v1.0.0 // indirect
github.com/holiman/uint256 v1.2.2 // indirect
github.com/holiman/uint256 v1.2.3 // indirect
github.com/inconshreveable/mousetrap v1.1.0 // indirect
github.com/jackc/pgpassfile v1.0.0 // indirect
github.com/jackc/pgservicefile v0.0.0-20221227161230-091c0ba34f0a // indirect
Expand Down Expand Up @@ -148,7 +155,7 @@ require (
github.com/yusufpapurcu/wmi v1.2.2 // indirect
go.uber.org/atomic v1.10.0 // indirect
golang.org/x/crypto v0.9.0 // indirect
golang.org/x/sys v0.8.0 // indirect
golang.org/x/sys v0.9.0 // indirect
golang.org/x/text v0.9.0 // indirect
golang.org/x/time v0.3.0 // indirect
google.golang.org/appengine v1.6.7 // indirect
Expand Down
Loading

0 comments on commit caa10d8

Please sign in to comment.