git.delta.rocks / unique-network / refs/commits / fa01f9a87ad6

difftreelog

source

pallets/proxy-rmrk-core/Cargo.toml1.9 KiBsourcehistory
1[package]2edition = "2021"3license = "GPLv3"4name = "pallet-rmrk-core"5version = "0.1.2"67[dependencies]8codec = { default-features = false, features = ['derive'], package = 'parity-scale-codec', version = "3.1.2" }9scale-info = { version = "2.0.1", default-features = false, features = ["derive"] }1011frame-benchmarking = { default-features = false, optional = true, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }12frame-support = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }13frame-system = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }14pallet-common = { default-features = false, path = "../common" }15pallet-evm = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.36" }16pallet-nonfungible = { default-features = false, path = "../../pallets/nonfungible" }17pallet-structure = { default-features = false, path = "../../pallets/structure" }18rmrk-traits = { default-features = false, path = "../../primitives/rmrk-traits" }19sp-runtime = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }20sp-std = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }21up-data-structs = { default-features = false, path = "../../primitives/data-structs" }2223[features]24default = ["std"]25runtime-benchmarks = ['frame-benchmarking', 'frame-support/runtime-benchmarks', 'frame-system/runtime-benchmarks']26std = [27	"frame-support/std",28	"frame-system/std",29	"pallet-common/std",30	"pallet-evm/std",31	"pallet-nonfungible/std",32	"pallet-structure/std",33	"rmrk-traits/std",34	"sp-runtime/std",35	"sp-std/std",36	"up-data-structs/std",37	'frame-benchmarking/std',38]39try-runtime = ["frame-support/try-runtime"]