Skip to content

Commit 03e626d

Browse files
committed
Merge branch 'master' into next
2 parents 2b85971 + 138f52f commit 03e626d

File tree

13 files changed

+16
-12
lines changed

13 files changed

+16
-12
lines changed

actors/account/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ fvm_ipld_encoding = "0.3.3"
2525
anyhow = "1.0.65"
2626

2727
[dev-dependencies]
28-
fil_actors_runtime = { version = "10.0.0-alpha.1", path = "../../runtime", features = ["test_utils", "sector-default"] }
28+
fil_actors_runtime = { path = "../../runtime", features = ["test_utils", "sector-default"] }
2929

3030
[features]
3131
fil-actor = ["fil_actors_runtime/fil-actor"]

actors/cron/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ fvm_ipld_blockstore = "0.1.1"
2424
fvm_ipld_encoding = "0.3.3"
2525

2626
[dev-dependencies]
27-
fil_actors_runtime = { version = "10.0.0-alpha.1", path = "../../runtime", features = ["test_utils", "sector-default"] }
27+
fil_actors_runtime = { path = "../../runtime", features = ["test_utils", "sector-default"] }
2828

2929
[features]
3030
fil-actor = ["fil_actors_runtime/fil-actor"]

actors/eam/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ hex-literal = "0.3.4"
3131
fil_actors_evm_shared = { version = "10.0.0-alpha.1", path = "../evm/shared" }
3232

3333
[dev-dependencies]
34-
fil_actor_evm = { version = "10.0.0-alpha.1", path = "../evm"}
34+
fil_actor_evm = { path = "../evm"}
3535
fil_actors_runtime = { path = "../../runtime", features = ["test_utils"] }
3636

3737
[features]

actors/init/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ fvm_ipld_blockstore = "0.1.1"
2828
fvm_ipld_encoding = "0.3.3"
2929

3030
[dev-dependencies]
31-
fil_actors_runtime = { version = "10.0.0-alpha.1", path = "../../runtime", features = ["test_utils", "sector-default"] }
31+
fil_actors_runtime = { path = "../../runtime", features = ["test_utils", "sector-default"] }
3232

3333
[features]
3434
fil-actor = ["fil_actors_runtime/fil-actor"]

actors/market/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ num-traits = "0.2.14"
3333
serde = { version = "1.0.136", features = ["derive"] }
3434

3535
[dev-dependencies]
36-
fil_actors_runtime = { version = "10.0.0-alpha.1", path = "../../runtime", features = ["test_utils", "sector-default"] }
36+
fil_actors_runtime = { path = "../../runtime", features = ["test_utils", "sector-default"] }
3737
fil_actor_power = { path = "../power" }
3838
fil_actor_reward = { path = "../reward" }
3939
fil_actor_verifreg = { path = "../verifreg" }

actors/miner/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ fvm_ipld_encoding = "0.3.3"
3434
multihash = { version = "0.16.2", default-features = false }
3535

3636
[dev-dependencies]
37-
fil_actors_runtime = { version = "10.0.0-alpha.1", path = "../../runtime", features = ["test_utils", "sector-default"] }
37+
fil_actors_runtime = { path = "../../runtime", features = ["test_utils", "sector-default"] }
3838
fil_actor_account = { path = "../account" }
3939
fil_actor_reward = { path = "../reward" }
4040
fil_actor_power = { path = "../power" }

actors/multisig/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ num-traits = "0.2.14"
3131
serde = { version = "1.0.136", features = ["derive"] }
3232

3333
[dev-dependencies]
34-
fil_actors_runtime = { version = "10.0.0-alpha.1", path = "../../runtime", features = ["test_utils", "sector-default"] }
34+
fil_actors_runtime = { path = "../../runtime", features = ["test_utils", "sector-default"] }
3535
lazy_static = "1.4.0"
3636

3737
[features]

actors/paych/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ fvm_ipld_blockstore = "0.1.1"
2626
fvm_ipld_encoding = "0.3.3"
2727

2828
[dev-dependencies]
29-
fil_actors_runtime = { version = "10.0.0-alpha.1", path = "../../runtime", features = ["test_utils", "sector-default"] }
29+
fil_actors_runtime = { path = "../../runtime", features = ["test_utils", "sector-default"] }
3030
fvm_ipld_amt = { version = "0.5.1", features = ["go-interop"] }
3131
derive_builder = "0.10.2"
3232

actors/power/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ fvm_ipld_blockstore = "0.1.1"
3131
fvm_ipld_encoding = "0.3.3"
3232

3333
[dev-dependencies]
34-
fil_actors_runtime = { version = "10.0.0-alpha.1", path = "../../runtime", features = ["test_utils", "sector-default"] }
34+
fil_actors_runtime = { path = "../../runtime", features = ["test_utils", "sector-default"] }
3535
fil_actor_reward = { path = "../reward" }
3636

3737
[features]

actors/reward/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ fvm_ipld_blockstore = "0.1.1"
2525
fvm_ipld_encoding = "0.3.3"
2626

2727
[dev-dependencies]
28-
fil_actors_runtime = { version = "10.0.0-alpha.1", path = "../../runtime", features = ["test_utils", "sector-default"] }
28+
fil_actors_runtime = { path = "../../runtime", features = ["test_utils", "sector-default"] }
2929
num = "0.4.0"
3030

3131
[features]

0 commit comments

Comments
 (0)