diff --git a/Cargo.lock b/Cargo.lock index 8e7988813b..d830a09f7c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2266,7 +2266,6 @@ dependencies = [ "frame-metadata 16.0.0", "futures", "hex", - "integration-tests-proc-macro", "parity-scale-codec", "regex", "scale-info", @@ -2277,6 +2276,7 @@ dependencies = [ "subxt-codegen", "subxt-metadata", "subxt-signer", + "subxt-test-proc-macro", "syn 2.0.48", "test-runtime", "tokio", @@ -2285,15 +2285,6 @@ dependencies = [ "wabt", ] -[[package]] -name = "integration-tests-proc-macro" -version = "0.34.0" -dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.48", -] - [[package]] name = "io-lifetimes" version = "1.0.11" @@ -4684,6 +4675,15 @@ dependencies = [ "zeroize", ] +[[package]] +name = "subxt-test-proc-macro" +version = "0.34.0" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.48", +] + [[package]] name = "syn" version = "1.0.109" diff --git a/testing/integration-tests/Cargo.toml b/testing/integration-tests/Cargo.toml index 4af5e927e2..fb55fb857d 100644 --- a/testing/integration-tests/Cargo.toml +++ b/testing/integration-tests/Cargo.toml @@ -46,7 +46,7 @@ tracing = { workspace = true } tracing-subscriber = { workspace = true } wabt = { workspace = true } substrate-runner = { workspace = true } -integration-tests-proc-macro = { path = "proc-macro" } +subxt-test-proc-macro = { path = "proc-macro" } [build-dependencies] cfg_aliases = "0.2.0" diff --git a/testing/integration-tests/proc-macro/Cargo.toml b/testing/integration-tests/proc-macro/Cargo.toml index b46bf20bd7..49e1467a41 100644 --- a/testing/integration-tests/proc-macro/Cargo.toml +++ b/testing/integration-tests/proc-macro/Cargo.toml @@ -1,5 +1,5 @@ [package] -name = "integration-tests-proc-macro" +name = "subxt-test-proc-macro" version.workspace = true authors.workspace = true edition.workspace = true diff --git a/testing/integration-tests/src/utils/mod.rs b/testing/integration-tests/src/utils/mod.rs index c92d156d62..5c6c11e0a0 100644 --- a/testing/integration-tests/src/utils/mod.rs +++ b/testing/integration-tests/src/utils/mod.rs @@ -12,7 +12,7 @@ pub use node_proc::TestNodeProcess; pub use tx_retries::*; pub use wait_for_blocks::*; -pub use integration_tests_proc_macro::subxt_test; +pub use subxt_test_proc_macro::subxt_test; /// The test timeout is set to 1 second. /// However, the test is sleeping for 5 seconds.