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-01-29 20:19:27 +00:00
|
|
|
go 1.15
|
2020-06-24 10:52:23 +00:00
|
|
|
|
|
|
|
require (
|
2020-07-07 12:58:09 +00:00
|
|
|
contrib.go.opencensus.io/exporter/prometheus v0.1.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
|
2020-11-23 19:43:18 +00:00
|
|
|
github.com/drand/drand v1.2.1
|
2021-01-29 18:53:34 +00:00
|
|
|
github.com/filecoin-project/go-address v0.0.5
|
2021-06-02 10:38:07 +00:00
|
|
|
github.com/filecoin-project/go-data-transfer v1.6.0
|
|
|
|
github.com/filecoin-project/go-fil-markets v1.4.0
|
2021-03-23 12:30:26 +00:00
|
|
|
github.com/filecoin-project/go-jsonrpc v0.1.4-0.20210217175800-45ea43ac2bec
|
|
|
|
github.com/filecoin-project/go-state-types v0.1.0
|
2020-06-24 10:52:23 +00:00
|
|
|
github.com/filecoin-project/go-storedcounter v0.0.0-20200421200003-1c99c62e8a5b
|
2021-06-01 19:44:42 +00:00
|
|
|
github.com/filecoin-project/lotus v1.9.0
|
2021-06-02 10:38:07 +00:00
|
|
|
github.com/filecoin-project/specs-actors v0.9.14
|
2020-11-23 19:43:18 +00:00
|
|
|
github.com/google/uuid v1.1.2
|
2020-06-29 12:57:55 +00:00
|
|
|
github.com/gorilla/mux v1.7.4
|
2020-07-27 11:57:01 +00:00
|
|
|
github.com/hashicorp/go-multierror v1.1.0
|
2020-11-24 18:24:35 +00:00
|
|
|
github.com/influxdata/influxdb v1.8.3 // indirect
|
2020-07-30 14:22:43 +00:00
|
|
|
github.com/ipfs/go-cid v0.0.7
|
2020-10-06 12:13:03 +00:00
|
|
|
github.com/ipfs/go-datastore v0.4.5
|
2021-06-01 19:44:42 +00:00
|
|
|
github.com/ipfs/go-graphsync v0.6.2-0.20210428121800-88edb5462e17 // indirect
|
2020-06-24 13:16:10 +00:00
|
|
|
github.com/ipfs/go-ipfs-files v0.0.8
|
|
|
|
github.com/ipfs/go-ipld-format v0.2.0
|
2021-06-02 10:38:07 +00:00
|
|
|
github.com/ipfs/go-log/v2 v2.1.2
|
2020-08-28 12:36:20 +00:00
|
|
|
github.com/ipfs/go-merkledag v0.3.2
|
2020-06-24 13:16:10 +00:00
|
|
|
github.com/ipfs/go-unixfs v0.2.4
|
2020-11-23 19:43:18 +00:00
|
|
|
github.com/ipld/go-car v0.1.1-0.20201119040415-11b6074b6d4d
|
2020-06-30 16:02:02 +00:00
|
|
|
github.com/kpacha/opencensus-influxdb v0.0.0-20181102202715-663e2683a27c
|
2020-11-23 19:43:18 +00:00
|
|
|
github.com/libp2p/go-libp2p v0.12.0
|
|
|
|
github.com/libp2p/go-libp2p-core v0.7.0
|
2020-06-26 14:16:50 +00:00
|
|
|
github.com/libp2p/go-libp2p-pubsub-tracer v0.0.0-20200626141350-e730b32bf1e6
|
2020-08-28 12:36:20 +00:00
|
|
|
github.com/multiformats/go-multiaddr v0.3.1
|
|
|
|
github.com/multiformats/go-multiaddr-net v0.2.0
|
2021-01-26 10:53:27 +00:00
|
|
|
github.com/testground/sdk-go v0.2.6
|
2020-11-24 18:24:35 +00:00
|
|
|
go.opencensus.io v0.22.5
|
2021-01-29 18:53:34 +00:00
|
|
|
golang.org/x/sync v0.0.0-20201207232520-09787c993a3a
|
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
|