Skip to content

Commit

Permalink
deps: ref-fvm and utils crates pointing to git.
Browse files Browse the repository at this point in the history
  • Loading branch information
raulk committed Nov 13, 2022
1 parent f47cc3b commit c66827c
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 21 deletions.
12 changes: 12 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

39 changes: 18 additions & 21 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -57,16 +57,17 @@ members = [
]

[patch.crates-io]
#frc42_dispatch = { git = "https://github.com/filecoin-project/filecoin-actor-utils", branch = "feat/fvm-m2" }
#frc46_token = { git = "https://github.com/filecoin-project/filecoin-actor-utils", branch = "feat/fvm-m2" }

#fvm_shared = { git = "https://github.com/filecoin-project/ref-fvm", branch = "raulk/events" }
#fvm_sdk = { git = "https://github.com/filecoin-project/ref-fvm", branch = "raulk/events" }
#fvm_ipld_hamt = { git = "https://github.com/filecoin-project/ref-fvm", branch = "raulk/events" }
#fvm_ipld_amt = { git = "https://github.com/filecoin-project/ref-fvm", branch = "raulk/events" }
#fvm_ipld_bitfield = { git = "https://github.com/filecoin-project/ref-fvm", branch = "raulk/events" }
#fvm_ipld_encoding = { git = "https://github.com/filecoin-project/ref-fvm", branch = "raulk/events" }
#fvm_ipld_blockstore = { git = "https://github.com/filecoin-project/ref-fvm", branch = "raulk/events" }
frc42_dispatch = { git = "https://github.com/filecoin-project/filecoin-actor-utils", branch = "raulk/events" }
frc46_token = { git = "https://github.com/filecoin-project/filecoin-actor-utils", branch = "raulk/events" }
fvm_actor_utils = { git = "https://github.com/filecoin-project/filecoin-actor-utils", branch = "raulk/events" }

fvm_shared = { git = "https://github.com/filecoin-project/ref-fvm", branch = "raulk/events" }
fvm_sdk = { git = "https://github.com/filecoin-project/ref-fvm", branch = "raulk/events" }
fvm_ipld_hamt = { git = "https://github.com/filecoin-project/ref-fvm", branch = "raulk/events" }
fvm_ipld_amt = { git = "https://github.com/filecoin-project/ref-fvm", branch = "raulk/events" }
fvm_ipld_bitfield = { git = "https://github.com/filecoin-project/ref-fvm", branch = "raulk/events" }
fvm_ipld_encoding = { git = "https://github.com/filecoin-project/ref-fvm", branch = "raulk/events" }
fvm_ipld_blockstore = { git = "https://github.com/filecoin-project/ref-fvm", branch = "raulk/events" }

## Uncomment when working locally on ref-fvm and this repo simultaneously.
## Assumes the ref-fvm checkout is in a sibling directory with the same name.
Expand All @@ -84,17 +85,13 @@ members = [
## Assumes the ref-fvm checkout is in a sibling directory with the same name.
## (Valid once FVM modules are published to crates.io)
# [patch.crates-io]
fvm_shared = { path = "../ref-fvm/shared" }
fvm_sdk = { path = "../ref-fvm/sdk" }
fvm_ipld_hamt = { path = "../ref-fvm/ipld/hamt" }
fvm_ipld_amt = { path = "../ref-fvm/ipld/amt" }
fvm_ipld_bitfield = { path = "../ref-fvm/ipld/bitfield"}
fvm_ipld_encoding = { path = "../ref-fvm/ipld/encoding"}
fvm_ipld_blockstore = { path = "../ref-fvm/ipld/blockstore"}
fvm_actor_utils = { path = "../filecoin-actor-utils/fvm_actor_utils" }
frc42_dispatch = { path = "../filecoin-actor-utils/frc42_dispatch" }
frc46_token = { path = "../filecoin-actor-utils/frc46_token" }

# fvm_shared = { path = "../ref-fvm/shared" }
# fvm_sdk = { path = "../ref-fvm/sdk" }
# fvm_ipld_hamt = { path = "../ref-fvm/ipld/hamt" }
# fvm_ipld_amt = { path = "../ref-fvm/ipld/amt" }
# fvm_ipld_bitfield = { path = "../ref-fvm/ipld/bitfield"}
# fvm_ipld_encoding = { path = "../ref-fvm/ipld/encoding"}
# fvm_ipld_blockstore = { path = "../ref-fvm/ipld/blockstore"}

[profile.wasm]
inherits = "release"
Expand Down

0 comments on commit c66827c

Please sign in to comment.