2020-11-06 19:39:15 +00:00
|
|
|
module github.com/filecoin-project/lotus/testplans/lotus-soup
|
2020-06-24 10:52:23 +00:00
|
|
|
|
2021-06-02 10:51:23 +00:00
|
|
|
go 1.16
|
2020-06-24 10:52:23 +00:00
|
|
|
|
|
|
|
require (
|
2021-09-01 23:47:32 +00:00
|
|
|
contrib.go.opencensus.io/exporter/prometheus v0.4.0
|
2020-07-27 13:58:27 +00:00
|
|
|
github.com/codeskyblue/go-sh v0.0.0-20200712050446-30169cf553fe
|
2020-06-29 17:11:53 +00:00
|
|
|
github.com/davecgh/go-spew v1.1.1
|
2021-12-17 05:58:20 +00:00
|
|
|
github.com/drand/drand v1.3.0
|
2021-09-01 23:47:32 +00:00
|
|
|
github.com/filecoin-project/go-address v0.0.6
|
2022-02-08 15:38:39 +00:00
|
|
|
github.com/filecoin-project/go-data-transfer v1.14.0
|
|
|
|
github.com/filecoin-project/go-fil-markets v1.19.0
|
2021-09-01 23:47:32 +00:00
|
|
|
github.com/filecoin-project/go-jsonrpc v0.1.5
|
2021-12-20 01:44:19 +00:00
|
|
|
github.com/filecoin-project/go-state-types v0.1.3
|
2021-12-14 23:05:52 +00:00
|
|
|
github.com/filecoin-project/go-storedcounter v0.1.0
|
2021-08-30 15:57:24 +00:00
|
|
|
github.com/filecoin-project/lotus v0.0.0-00010101000000-000000000000
|
2021-06-02 10:38:07 +00:00
|
|
|
github.com/filecoin-project/specs-actors v0.9.14
|
2021-09-21 11:31:16 +00:00
|
|
|
github.com/google/uuid v1.3.0
|
|
|
|
github.com/gorilla/mux v1.8.0
|
|
|
|
github.com/hashicorp/go-multierror v1.1.1
|
|
|
|
github.com/influxdata/influxdb v1.9.4 // indirect
|
2021-08-30 15:57:24 +00:00
|
|
|
github.com/ipfs/go-cid v0.1.0
|
2021-12-14 16:23:33 +00:00
|
|
|
github.com/ipfs/go-datastore v0.5.1
|
2021-09-01 23:47:32 +00:00
|
|
|
github.com/ipfs/go-ipfs-files v0.0.9
|
2020-06-24 13:16:10 +00:00
|
|
|
github.com/ipfs/go-ipld-format v0.2.0
|
2022-02-08 15:38:39 +00:00
|
|
|
github.com/ipfs/go-log/v2 v2.5.0
|
2021-12-14 16:23:33 +00:00
|
|
|
github.com/ipfs/go-merkledag v0.5.1
|
2022-02-08 15:38:39 +00:00
|
|
|
github.com/ipfs/go-unixfs v0.3.1
|
2021-12-14 23:05:52 +00:00
|
|
|
github.com/ipld/go-car v0.3.3
|
2020-06-30 16:02:02 +00:00
|
|
|
github.com/kpacha/opencensus-influxdb v0.0.0-20181102202715-663e2683a27c
|
2022-02-08 15:38:39 +00:00
|
|
|
github.com/libp2p/go-libp2p v0.18.0-rc4
|
|
|
|
github.com/libp2p/go-libp2p-core v0.14.0
|
2020-06-26 14:16:50 +00:00
|
|
|
github.com/libp2p/go-libp2p-pubsub-tracer v0.0.0-20200626141350-e730b32bf1e6
|
2022-02-08 15:38:39 +00:00
|
|
|
github.com/multiformats/go-multiaddr v0.5.0
|
2021-01-26 10:53:27 +00:00
|
|
|
github.com/testground/sdk-go v0.2.6
|
2021-06-16 22:04:45 +00:00
|
|
|
go.opencensus.io v0.23.0
|
|
|
|
golang.org/x/sync v0.0.0-20210220032951-036812b2e83c
|
2020-06-24 10:52:23 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// This will work in all build modes: docker:go, exec:go, and local go build.
|
|
|
|
// On docker:go and exec:go, it maps to /extra/filecoin-ffi, as it's picked up
|
|
|
|
// as an "extra source" in the manifest.
|
2020-11-06 19:39:15 +00:00
|
|
|
replace github.com/filecoin-project/filecoin-ffi => ../../extern/filecoin-ffi
|
2021-08-30 15:57:24 +00:00
|
|
|
|
|
|
|
replace github.com/filecoin-project/lotus => ../../
|