1[package]2authors = ['Unique Network <support@uniquenetwork.io>']3description = 'Unique Runtime Common'4edition = '2021'5homepage = 'https://unique.network'6license = 'All Rights Reserved'7name = 'unique-runtime-common'8repository = 'https://github.com/UniqueNetwork/unique-chain'9version = '0.9.24'1011[features]12default = ['std']13std = [14 'sp-core/std',15 'sp-std/std',16 'sp-runtime/std',17 'codec/std',18 'frame-support/std',19 'frame-system/std',20 'sp-consensus-aura/std',21 'pallet-common/std',22 'pallet-unique/std',23 'pallet-fungible/std',24 'pallet-nonfungible/std',25 'pallet-refungible/std',26 'up-data-structs/std',27 'pallet-evm/std',28 'fp-rpc/std',29]30runtime-benchmarks = [31 'sp-runtime/runtime-benchmarks',32 'frame-support/runtime-benchmarks',33 'frame-system/runtime-benchmarks',34]3536opal-runtime = []37quartz-runtime = []38unique-runtime = []3940refungible = []4142[dependencies.sp-core]43default-features = false44git = "https://github.com/paritytech/substrate"45branch = "polkadot-v0.9.24"4647[dependencies.sp-std]48default-features = false49git = 'https://github.com/paritytech/substrate'50branch = 'polkadot-v0.9.24'5152[dependencies.sp-runtime]53default-features = false54git = "https://github.com/paritytech/substrate"55branch = "polkadot-v0.9.24"5657[dependencies.codec]58default-features = false59features = ['derive']60package = 'parity-scale-codec'61version = '3.1.2'6263[dependencies.scale-info]64default-features = false65features = ["derive"]66version = "2.0.1"6768[dependencies.frame-support]69default-features = false70git = "https://github.com/paritytech/substrate"71branch = "polkadot-v0.9.24"7273[dependencies.frame-system]74default-features = false75git = "https://github.com/paritytech/substrate"76branch = "polkadot-v0.9.24"7778[dependencies.pallet-common]79default-features = false80path = "../../pallets/common"8182[dependencies.pallet-unique]83default-features = false84path = "../../pallets/unique"8586[dependencies.pallet-fungible]87default-features = false88path = "../../pallets/fungible"8990[dependencies.pallet-nonfungible]91default-features = false92path = "../../pallets/nonfungible"9394[dependencies.pallet-refungible]95default-features = false96path = "../../pallets/refungible"9798[dependencies.pallet-unique-scheduler]99default-features = false100path = "../../pallets/scheduler"101102[dependencies.up-data-structs]103default-features = false104path = "../../primitives/data-structs"105106[dependencies.sp-consensus-aura]107default-features = false108git = "https://github.com/paritytech/substrate"109branch = "polkadot-v0.9.24"110111[dependencies.fp-rpc]112default-features = false113git = "https://github.com/uniquenetwork/frontier"114branch = "unique-polkadot-v0.9.24"115116[dependencies]117pallet-evm = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.24" }118evm-coder = { default-features = false, path = '../../crates/evm-coder' }119up-sponsorship = { default-features = false, git = "https://github.com/UniqueNetwork/pallet-sponsoring", branch = 'polkadot-v0.9.24' }120121rmrk-rpc = { default-features = false, path = "../../primitives/rmrk-rpc" }