From 5d34ffc61f2e787f32389b0c3f8e23c911379bf1 Mon Sep 17 00:00:00 2001 From: chungquantin <56880684+chungquantin@users.noreply.github.com> Date: Tue, 1 Oct 2024 09:44:37 +0700 Subject: [PATCH 1/2] fix: api-integration-tests --- pop-api/integration-tests/Cargo.toml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pop-api/integration-tests/Cargo.toml b/pop-api/integration-tests/Cargo.toml index cad7b4c4..1b735716 100644 --- a/pop-api/integration-tests/Cargo.toml +++ b/pop-api/integration-tests/Cargo.toml @@ -26,6 +26,7 @@ scale = { package = "parity-scale-codec", version = "3.6.12", default-features = ] } sp-io = { version = "37.0.0", default-features = false } sp-runtime = { version = "=38.0.0", default-features = false } +staging-xcm = { version = "=14.1.0", default-features = false } [features] default = [ "std" ] @@ -41,4 +42,5 @@ std = [ "scale/std", "sp-io/std", "sp-runtime/std", + "staging-xcm/std", ] From b819f097a02e0ef578215b18ba60daf79e9c2d98 Mon Sep 17 00:00:00 2001 From: chungquantin <56880684+chungquantin@users.noreply.github.com> Date: Wed, 2 Oct 2024 16:05:47 +0700 Subject: [PATCH 2/2] chore: add comment --- pop-api/integration-tests/Cargo.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pop-api/integration-tests/Cargo.toml b/pop-api/integration-tests/Cargo.toml index 1b735716..536a8a17 100644 --- a/pop-api/integration-tests/Cargo.toml +++ b/pop-api/integration-tests/Cargo.toml @@ -26,6 +26,7 @@ scale = { package = "parity-scale-codec", version = "3.6.12", default-features = ] } sp-io = { version = "37.0.0", default-features = false } sp-runtime = { version = "=38.0.0", default-features = false } +# TODO: Requires to resolve a dependency version issue. See more at: https://github.com/r0gue-io/pop-node/issues/313. staging-xcm = { version = "=14.1.0", default-features = false } [features]