From 4d290b19d9fc4985d44133dda11f8d68b5d55b07 Mon Sep 17 00:00:00 2001 From: Rod Vagg Date: Thu, 12 Sep 2024 10:45:08 +1000 Subject: [PATCH] fix(deps): const-hex as a dev depenedency everywhere --- actors/miner/Cargo.toml | 2 +- actors/verifreg/Cargo.toml | 2 +- runtime/Cargo.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/actors/miner/Cargo.toml b/actors/miner/Cargo.toml index 047231f30..bc03e1ae9 100644 --- a/actors/miner/Cargo.toml +++ b/actors/miner/Cargo.toml @@ -33,7 +33,6 @@ lazy_static = { workspace = true } log = { workspace = true } byteorder = { workspace = true } itertools = { workspace = true } -const-hex = { workspace = true } [dev-dependencies] fil_actors_runtime = { workspace = true, features = ["test_utils", "sector-default"] } @@ -43,6 +42,7 @@ fil_actor_power = { workspace = true } fil_actor_market = { workspace = true } rand = { workspace = true } test-case = { workspace = true } +const-hex = { workspace = true } [features] fil-actor = ["fil_actors_runtime/fil-actor"] diff --git a/actors/verifreg/Cargo.toml b/actors/verifreg/Cargo.toml index 66bd676b5..2e003e5a8 100644 --- a/actors/verifreg/Cargo.toml +++ b/actors/verifreg/Cargo.toml @@ -30,9 +30,9 @@ log = { workspace = true } num-derive = { workspace = true } num-traits = { workspace = true } serde = { workspace = true } -const-hex = { workspace = true } [dev-dependencies] +const-hex = { workspace = true } fil_actors_runtime = { workspace = true, features = ["test_utils", "sector-default"] } [features] diff --git a/runtime/Cargo.toml b/runtime/Cargo.toml index 7b1c1bd0e..3379ac93b 100644 --- a/runtime/Cargo.toml +++ b/runtime/Cargo.toml @@ -34,7 +34,6 @@ serde_repr = { workspace = true } thiserror = { workspace = true } unsigned-varint = { workspace = true } vm_api = { workspace = true } -const-hex = { workspace = true } # A fake-proofs dependency but... we can't select on that feature here because we enable it from # build.rs. @@ -56,6 +55,7 @@ optional = true derive_builder = { workspace = true } hex = { workspace = true } rand = { workspace = true } +const-hex = { workspace = true } # Enable the test_utils feature when testing. fil_actors_runtime = { workspace = true, features = ["test_utils"] }