Skip to content

Commit

Permalink
switch to workspace deps for everything but fuzzing
Browse files Browse the repository at this point in the history
  • Loading branch information
Stebalien committed Dec 18, 2023
1 parent e02efd1 commit 03c3c6e
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
3 changes: 3 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,9 @@ fvm_ipld_car = { path = "ipld/car" }
fvm_ipld_blockstore = { path = "ipld/blockstore" }
fvm_ipld_bitfield = { path = "ipld/bitfield" }
fvm_ipld_encoding = { path = "ipld/encoding" }
fvm_gas_calibration_shared = { path = "testing/calibration/shared" }
fvm_integration_tests = { path = "testing/integration" }
fvm_test_actors = { path = "testing/test_actors" }

[profile.actor]
inherits = "release"
Expand Down
4 changes: 2 additions & 2 deletions testing/integration/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ wasmtime = { workspace = true, default-features = false, features = ["cranelift"

[dev-dependencies]
actors-v12 = { package = "fil_builtin_actors_bundle", git = "https://github.com/filecoin-project/builtin-actors", branch = "master" }
fvm_test_actors = { path = "../test_actors" }
fvm_gas_calibration_shared = { path = "../calibration/shared" }
fvm_test_actors = { workspace = true }
fvm_gas_calibration_shared = { workspace = true }
blake2b_simd = { workspace = true }
serde_json = { workspace = true }
bls-signatures = { workspace = true }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ publish = false
fvm_sdk = { workspace = true }
fvm_shared = { workspace = true }
fvm_ipld_encoding = { workspace = true }
fvm_gas_calibration_shared = { path = "../../../calibration/shared" }
fvm_gas_calibration_shared = { workspace = true }

cid = { workspace = true }
num-derive = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion tools/fvm-bench/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ version = "0.1.0"
edition = "2021"

[dependencies]
fvm_integration_tests = { path = "../../testing/integration" }
fvm_integration_tests = { workspace = true }
fvm = { workspace = true, default-features = false }
fvm_shared = { workspace = true }
fvm_ipld_encoding = { workspace = true }
Expand Down

0 comments on commit 03c3c6e

Please sign in to comment.