Skip to content

Commit

Permalink
Add missing optional = true for sp-tracing
Browse files Browse the repository at this point in the history
See polkadot repo.
  • Loading branch information
mrcnski committed Aug 28, 2023
1 parent 043222a commit 1ebe092
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions polkadot/node/core/pvf/common/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ sc-executor-wasmtime = { path = "../../../../../substrate/client/executor/wasmti
sp-core = { path = "../../../../../substrate/primitives/core" }
sp-externalities = { path = "../../../../../substrate/primitives/externalities" }
sp-io = { path = "../../../../../substrate/primitives/io" }
sp-tracing = { path = "../../../../../substrate/primitives/tracing" }
sp-tracing = { path = "../../../../../substrate/primitives/tracing", optional = true }

[target.'cfg(target_os = "linux")'.dependencies]
landlock = "0.2.0"
Expand All @@ -37,4 +37,4 @@ tempfile = "3.3.0"
[features]
# This feature is used to export test code to other crates without putting it in the production build.
# Also used for building the puppet worker.
test-utils = []
test-utils = ["sp-tracing"]

0 comments on commit 1ebe092

Please sign in to comment.