From da61e6ee9cb1cd6838c9ea4100c2f15f48b4495a Mon Sep 17 00:00:00 2001 From: Raymond Cheung <178801527+raymondkfcheung@users.noreply.github.com> Date: Fri, 21 Feb 2025 14:37:38 +0000 Subject: [PATCH] Use sp-tracing, instead of tracing --- cumulus/parachains/runtimes/assets/common/Cargo.toml | 2 +- .../runtimes/bridge-hubs/bridge-hub-westend/Cargo.toml | 4 ++-- polkadot/xcm/xcm-builder/Cargo.toml | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/cumulus/parachains/runtimes/assets/common/Cargo.toml b/cumulus/parachains/runtimes/assets/common/Cargo.toml index af34120f639cb..f60fe053a6bc9 100644 --- a/cumulus/parachains/runtimes/assets/common/Cargo.toml +++ b/cumulus/parachains/runtimes/assets/common/Cargo.toml @@ -51,7 +51,7 @@ std = [ "scale-info/std", "sp-api/std", "sp-runtime/std", - "tracing/std", + "sp-tracing/std", "xcm-builder/std", "xcm-executor/std", "xcm/std", diff --git a/cumulus/parachains/runtimes/bridge-hubs/bridge-hub-westend/Cargo.toml b/cumulus/parachains/runtimes/bridge-hubs/bridge-hub-westend/Cargo.toml index 772968799a0b0..b26d9aac19e8f 100644 --- a/cumulus/parachains/runtimes/bridge-hubs/bridge-hub-westend/Cargo.toml +++ b/cumulus/parachains/runtimes/bridge-hubs/bridge-hub-westend/Cargo.toml @@ -20,7 +20,7 @@ hex-literal = { workspace = true, default-features = true } scale-info = { features = ["derive"], workspace = true } serde = { optional = true, features = ["derive"], workspace = true, default-features = true } serde_json = { features = ["alloc"], workspace = true } -tracing = { workspace = true } +sp-tracing = { workspace = true } # Substrate frame-benchmarking = { optional = true, workspace = true } @@ -214,7 +214,7 @@ std = [ "sp-version/std", "substrate-wasm-builder", "testnet-parachains-constants/std", - "tracing/std", + "sp-tracing/std", "westend-runtime-constants/std", "xcm-builder/std", "xcm-executor/std", diff --git a/polkadot/xcm/xcm-builder/Cargo.toml b/polkadot/xcm/xcm-builder/Cargo.toml index 31cdb3a6ec16d..dad8aa5e6b708 100644 --- a/polkadot/xcm/xcm-builder/Cargo.toml +++ b/polkadot/xcm/xcm-builder/Cargo.toml @@ -25,7 +25,7 @@ sp-core = { workspace = true } sp-io = { workspace = true } sp-runtime = { workspace = true } sp-weights = { workspace = true } -tracing = { workspace = true } +sp-tracing = { workspace = true } xcm = { workspace = true } xcm-executor = { workspace = true } @@ -76,7 +76,7 @@ std = [ "sp-io/std", "sp-runtime/std", "sp-weights/std", - "tracing/std", + "sp-tracing/std", "xcm-executor/std", "xcm/std", ]