difftreelog
build enable cargo workspace-inheritance
in: master
5 files changed
Cargo.tomldiffbeforeafterboth--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,3 +1,5 @@
+cargo-features = ["workspace-inheritance"]
+
[workspace]
resolver = "2"
members = [
pallets/foreign-assets/Cargo.tomldiffbeforeafterboth1[package]2name = "pallet-foreign-assets"3version = "0.1.0"4license = "GPLv3"5edition = "2021"67[dependencies]8log = { version = "0.4.16", default-features = false }9serde = { version = "1.0.136", optional = true }10scale-info = { version = "2.0.1", default-features = false, features = ["derive"] }11codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false }12sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.30", default-features = false }13sp-std = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.30", default-features = false }14frame-support = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.30", default-features = false }15frame-system = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.30", default-features = false }16up-data-structs = { default-features = false, path = '../../primitives/data-structs' }17pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.30", default-features = false }18pallet-common = { default-features = false, path = '../common' }19pallet-fungible = { default-features = false, path = '../fungible' }20xcm = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.30", default-features = false }21xcm-builder = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.30", default-features = false }22xcm-executor = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.30", default-features = false }23orml-tokens.workspace = true24frame-benchmarking = { default-features = false, optional = true, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.30" }2526[dev-dependencies]27serde_json = "1.0.68"28hex = { version = "0.4" }29sp-core = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.30" }30sp-io = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.30" }31pallet-timestamp = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.30" }32pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.30" }3334[features]35default = ["std"]36std = [37 "serde",38 "log/std",39 "codec/std",40 "scale-info/std",41 "sp-runtime/std",42 "sp-std/std",43 "frame-support/std",44 "frame-system/std",45 "up-data-structs/std",46 "pallet-common/std",47 "pallet-balances/std",48 "pallet-fungible/std",49 "orml-tokens/std"50]51try-runtime = ["frame-support/try-runtime"]52runtime-benchmarks = ['frame-benchmarking', 'pallet-common/runtime-benchmarks']1cargo-features = ["workspace-inheritance"]23[package]4name = "pallet-foreign-assets"5version = "0.1.0"6license = "GPLv3"7edition = "2021"89[dependencies]10log = { version = "0.4.16", default-features = false }11serde = { version = "1.0.136", optional = true }12scale-info = { version = "2.0.1", default-features = false, features = [13 "derive",14] }15codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false }16sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.30", default-features = false }17sp-std = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.30", default-features = false }18frame-support = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.30", default-features = false }19frame-system = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.30", default-features = false }20up-data-structs = { default-features = false, path = '../../primitives/data-structs' }21pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.30", default-features = false }22pallet-common = { default-features = false, path = '../common' }23pallet-fungible = { default-features = false, path = '../fungible' }24xcm = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.30", default-features = false }25xcm-builder = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.30", default-features = false }26xcm-executor = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.30", default-features = false }27orml-tokens.workspace = true28frame-benchmarking = { default-features = false, optional = true, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.30" }2930[dev-dependencies]31serde_json = "1.0.68"32hex = { version = "0.4" }33sp-core = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.30" }34sp-io = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.30" }35pallet-timestamp = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.30" }36pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.30" }3738[features]39default = ["std"]40std = [41 "serde",42 "log/std",43 "codec/std",44 "scale-info/std",45 "sp-runtime/std",46 "sp-std/std",47 "frame-support/std",48 "frame-system/std",49 "up-data-structs/std",50 "pallet-common/std",51 "pallet-balances/std",52 "pallet-fungible/std",53 "orml-tokens/std",54]55try-runtime = ["frame-support/try-runtime"]56runtime-benchmarks = ['frame-benchmarking', 'pallet-common/runtime-benchmarks']runtime/opal/Cargo.tomldiffbeforeafterboth--- a/runtime/opal/Cargo.toml
+++ b/runtime/opal/Cargo.toml
@@ -1,6 +1,8 @@
################################################################################
# Package
+cargo-features = ["workspace-inheritance"]
+
[package]
authors = ['Unique Network <support@uniquenetwork.io>']
build = 'build.rs'
runtime/quartz/Cargo.tomldiffbeforeafterboth--- a/runtime/quartz/Cargo.toml
+++ b/runtime/quartz/Cargo.toml
@@ -1,6 +1,8 @@
################################################################################
# Package
+cargo-features = ["workspace-inheritance"]
+
[package]
authors = ['Unique Network <support@uniquenetwork.io>']
build = 'build.rs'
runtime/unique/Cargo.tomldiffbeforeafterboth--- a/runtime/unique/Cargo.toml
+++ b/runtime/unique/Cargo.toml
@@ -1,6 +1,8 @@
################################################################################
# Package
+cargo-features = ["workspace-inheritance"]
+
[package]
authors = ['Unique Network <support@uniquenetwork.io>']
build = 'build.rs'