Skip to content

Commit

Permalink
development using workspace dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
lemunozm committed Nov 20, 2023
1 parent 88038e0 commit 0a8045f
Show file tree
Hide file tree
Showing 3 changed files with 284 additions and 286 deletions.
4 changes: 4 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

36 changes: 19 additions & 17 deletions runtime/common/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ serde = { workspace = true }
smallvec = { workspace = true }
codec = { package = "parity-scale-codec", workspace = true }
scale-info = { workspace = true }
log = { workspace = true }

frame-support = { workspace = true }
frame-system = { workspace = true }
Expand All @@ -23,23 +24,21 @@ sp-arithmetic = { workspace = true }
sp-core = { workspace = true }
sp-runtime = { workspace = true }
sp-std = { workspace = true }
sp-io = { workspace = true }

polkadot-parachain = { workspace = true }
xcm = { workspace = true }
xcm-executor = { workspace = true }

# Orml
orml-traits = { workspace = true }

# Frontier
pallet-evm-precompile-blake2 = { workspace = true }
pallet-evm-precompile-bn128 = { workspace = true }
pallet-evm-precompile-dispatch = { workspace = true }
pallet-evm-precompile-modexp = { workspace = true }
pallet-evm-precompile-sha3fips = { workspace = true }
pallet-evm-precompile-simple = { workspace = true }

# Moonbeam
xcm-primitives = { workspace = true }

# Local
Expand All @@ -48,10 +47,6 @@ cfg-traits = { workspace = true }
cfg-types = { workspace = true }
cfg-utils = { workspace = true }

# Used for migrations
log = { workspace = true }
sp-io = { workspace = true }

# Pallets in the export list
axelar-gateway-precompile = { workspace = true }
chainbridge = {workspace = true }
Expand Down Expand Up @@ -128,15 +123,12 @@ cfg-mocks = { workspace = true }
[features]
default = ["std"]
std = [
"cfg-primitives/std",
"cfg-traits/std",
"cfg-types/std",
"cfg-utils/std",
"cfg-mocks/std",
"codec/std",
"log/std",

# Substrate related
"frame-support/std",
"frame-system/std",
"log/std",
"orml-traits/std",
"polkadot-parachain/std",
"scale-info/std",
Expand All @@ -152,6 +144,13 @@ std = [
"xcm-primitives/std",
"xcm/std",

# Locals
"cfg-primitives/std",
"cfg-traits/std",
"cfg-types/std",
"cfg-utils/std",
"cfg-mocks/std",

# Pallet exporting list
"axelar-gateway-precompile/std",
"chainbridge/std",
Expand Down Expand Up @@ -223,16 +222,19 @@ std = [
"parachain-info/std",
]
runtime-benchmarks = [
# Substrate related
"sp-runtime/runtime-benchmarks",
"frame-support/runtime-benchmarks",
"frame-system/runtime-benchmarks",
"xcm-executor/runtime-benchmarks",
"xcm-primitives/runtime-benchmarks",

# Locals
"cfg-primitives/runtime-benchmarks",
"cfg-traits/runtime-benchmarks",
"cfg-types/runtime-benchmarks",
"cfg-utils/runtime-benchmarks",
"cfg-mocks/runtime-benchmarks",
"frame-support/runtime-benchmarks",
"frame-system/runtime-benchmarks",
"xcm-executor/runtime-benchmarks",
"xcm-primitives/runtime-benchmarks",

# Pallet exporting list
"axelar-gateway-precompile/runtime-benchmarks",
Expand Down
Loading

0 comments on commit 0a8045f

Please sign in to comment.