1234[package]5authors = ['Unique Network <support@uniquenetwork.io>']6build = 'build.rs'7description = 'Opal Runtime'8edition = '2021'9homepage = 'https://unique.network'10license = 'GPLv3'11name = 'opal-runtime'12repository = 'https://github.com/UniqueNetwork/unique-chain'13version = '0.9.20'1415[package.metadata.docs.rs]16targets = ['x86_64-unknown-linux-gnu']1718[features]19default = ['std']20runtime-benchmarks = [21 'hex-literal',22 'frame-benchmarking',23 'frame-support/runtime-benchmarks',24 'frame-system-benchmarking',25 'frame-system/runtime-benchmarks',26 'pallet-ethereum/runtime-benchmarks',27 'pallet-evm-migration/runtime-benchmarks',28 'pallet-evm-coder-substrate/runtime-benchmarks',29 'pallet-balances/runtime-benchmarks',30 'pallet-timestamp/runtime-benchmarks',31 'pallet-common/runtime-benchmarks',32 'pallet-structure/runtime-benchmarks',33 'pallet-fungible/runtime-benchmarks',34 'pallet-refungible/runtime-benchmarks',35 'pallet-nonfungible/runtime-benchmarks',36 'pallet-unique/runtime-benchmarks',37 'pallet-inflation/runtime-benchmarks',38 'pallet-xcm/runtime-benchmarks',39 'sp-runtime/runtime-benchmarks',40 'xcm-builder/runtime-benchmarks',41]42try-runtime = [43 'frame-try-runtime',44 'frame-executive/try-runtime',45 'frame-system/try-runtime',46]47std = [48 'codec/std',49 'cumulus-pallet-aura-ext/std',50 'cumulus-pallet-parachain-system/std',51 'cumulus-pallet-xcm/std',52 'cumulus-pallet-xcmp-queue/std',53 'cumulus-primitives-core/std',54 'cumulus-primitives-utility/std',55 'frame-try-runtime/std',56 'frame-executive/std',57 'frame-support/std',58 'frame-system/std',59 'frame-system-rpc-runtime-api/std',60 'pallet-aura/std',61 'pallet-balances/std',62 63 64 65 66 'pallet-randomness-collective-flip/std',67 'pallet-sudo/std',68 'pallet-timestamp/std',69 'pallet-transaction-payment/std',70 'pallet-transaction-payment-rpc-runtime-api/std',71 'pallet-treasury/std',72 73 'pallet-evm/std',74 'pallet-evm-migration/std',75 'pallet-evm-contract-helpers/std',76 'pallet-evm-transaction-payment/std',77 'pallet-evm-coder-substrate/std',78 'pallet-ethereum/std',79 'pallet-base-fee/std',80 'fp-rpc/std',81 'up-rpc/std',82 'fp-evm-mapping/std',83 'fp-self-contained/std',84 'parachain-info/std',85 'serde',86 'pallet-inflation/std',87 'pallet-common/std',88 'pallet-structure/std',89 'pallet-fungible/std',90 'pallet-refungible/std',91 'pallet-nonfungible/std',92 'pallet-unique/std',93 'pallet-unq-scheduler/std',94 'pallet-charge-transaction/std',95 'up-data-structs/std',96 'sp-api/std',97 'sp-block-builder/std',98 "sp-consensus-aura/std",99 'sp-core/std',100 'sp-inherents/std',101 'sp-io/std',102 'sp-offchain/std',103 'sp-runtime/std',104 'sp-session/std',105 'sp-std/std',106 'sp-transaction-pool/std',107 'sp-version/std',108 'xcm/std',109 'xcm-builder/std',110 'xcm-executor/std',111 'unique-runtime-common/std',112 'rmrk-rpc/std',113114 "orml-vesting/std",115]116limit-testing = ['pallet-unique/limit-testing', 'up-data-structs/limit-testing']117118119120121[dependencies.codec]122default-features = false123features = ['derive']124package = 'parity-scale-codec'125version = '3.1.2'126127[dependencies.frame-benchmarking]128default-features = false129git = "https://github.com/paritytech/substrate"130optional = true131branch = "polkadot-v0.9.21"132133[dependencies.frame-try-runtime]134default-features = false135git = 'https://github.com/paritytech/substrate'136optional = true137branch = 'polkadot-v0.9.21'138139[dependencies.frame-executive]140default-features = false141git = "https://github.com/paritytech/substrate"142branch = "polkadot-v0.9.21"143144[dependencies.frame-support]145default-features = false146git = "https://github.com/paritytech/substrate"147branch = "polkadot-v0.9.21"148149[dependencies.frame-system]150default-features = false151git = "https://github.com/paritytech/substrate"152branch = "polkadot-v0.9.21"153154[dependencies.frame-system-benchmarking]155default-features = false156git = "https://github.com/paritytech/substrate"157optional = true158branch = "polkadot-v0.9.21"159160[dependencies.frame-system-rpc-runtime-api]161default-features = false162git = "https://github.com/paritytech/substrate"163branch = "polkadot-v0.9.21"164165[dependencies.hex-literal]166optional = true167version = '0.3.3'168169[dependencies.serde]170default-features = false171features = ['derive']172optional = true173version = '1.0.130'174175[dependencies.pallet-aura]176default-features = false177git = "https://github.com/paritytech/substrate"178branch = "polkadot-v0.9.21"179180[dependencies.pallet-balances]181default-features = false182git = "https://github.com/paritytech/substrate"183branch = "polkadot-v0.9.21"184185186187188189190191192193194195196197198199200201202203204[dependencies.pallet-randomness-collective-flip]205default-features = false206git = "https://github.com/paritytech/substrate"207branch = "polkadot-v0.9.21"208209[dependencies.pallet-sudo]210default-features = false211git = "https://github.com/paritytech/substrate"212branch = "polkadot-v0.9.21"213214[dependencies.pallet-timestamp]215default-features = false216git = "https://github.com/paritytech/substrate"217branch = "polkadot-v0.9.21"218219[dependencies.pallet-transaction-payment]220default-features = false221git = "https://github.com/paritytech/substrate"222branch = "polkadot-v0.9.21"223224[dependencies.pallet-transaction-payment-rpc-runtime-api]225default-features = false226git = "https://github.com/paritytech/substrate"227branch = "polkadot-v0.9.21"228229[dependencies.pallet-treasury]230default-features = false231git = "https://github.com/paritytech/substrate"232branch = "polkadot-v0.9.21"233234235236237238239[dependencies.sp-arithmetic]240default-features = false241git = "https://github.com/paritytech/substrate"242branch = "polkadot-v0.9.21"243244[dependencies.sp-api]245default-features = false246git = "https://github.com/paritytech/substrate"247branch = "polkadot-v0.9.21"248249[dependencies.sp-block-builder]250default-features = false251git = "https://github.com/paritytech/substrate"252branch = "polkadot-v0.9.21"253254[dependencies.sp-core]255default-features = false256git = "https://github.com/paritytech/substrate"257branch = "polkadot-v0.9.21"258259[dependencies.sp-consensus-aura]260default-features = false261git = "https://github.com/paritytech/substrate"262branch = "polkadot-v0.9.21"263264[dependencies.sp-inherents]265default-features = false266git = "https://github.com/paritytech/substrate"267branch = "polkadot-v0.9.21"268269[dependencies.sp-io]270default-features = false271git = "https://github.com/paritytech/substrate"272branch = "polkadot-v0.9.21"273274[dependencies.sp-offchain]275default-features = false276git = "https://github.com/paritytech/substrate"277branch = "polkadot-v0.9.21"278279[dependencies.sp-runtime]280default-features = false281git = "https://github.com/paritytech/substrate"282branch = "polkadot-v0.9.21"283284[dependencies.sp-session]285default-features = false286git = "https://github.com/paritytech/substrate"287branch = "polkadot-v0.9.21"288289[dependencies.sp-std]290default-features = false291git = "https://github.com/paritytech/substrate"292branch = "polkadot-v0.9.21"293294[dependencies.sp-transaction-pool]295default-features = false296git = "https://github.com/paritytech/substrate"297branch = "polkadot-v0.9.21"298299[dependencies.sp-version]300default-features = false301git = "https://github.com/paritytech/substrate"302branch = "polkadot-v0.9.21"303304[dependencies.smallvec]305version = '1.6.1'306307308309310[dependencies.parachain-info]311default-features = false312git = "https://github.com/uniquenetwork/cumulus"313branch = "polkadot-v0.9.21"314315[dependencies.cumulus-pallet-aura-ext]316git = "https://github.com/uniquenetwork/cumulus"317branch = "polkadot-v0.9.21"318default-features = false319320[dependencies.cumulus-pallet-parachain-system]321git = "https://github.com/uniquenetwork/cumulus"322branch = "polkadot-v0.9.21"323default-features = false324325[dependencies.cumulus-primitives-core]326git = "https://github.com/uniquenetwork/cumulus"327branch = "polkadot-v0.9.21"328default-features = false329330[dependencies.cumulus-pallet-xcm]331git = "https://github.com/uniquenetwork/cumulus"332branch = "polkadot-v0.9.21"333default-features = false334335[dependencies.cumulus-pallet-dmp-queue]336git = "https://github.com/uniquenetwork/cumulus"337branch = "polkadot-v0.9.21"338default-features = false339340[dependencies.cumulus-pallet-xcmp-queue]341git = "https://github.com/uniquenetwork/cumulus"342branch = "polkadot-v0.9.21"343default-features = false344345[dependencies.cumulus-primitives-utility]346git = "https://github.com/uniquenetwork/cumulus"347branch = "polkadot-v0.9.21"348default-features = false349350[dependencies.cumulus-primitives-timestamp]351git = "https://github.com/uniquenetwork/cumulus"352branch = "polkadot-v0.9.21"353default-features = false354355356357358[dependencies.polkadot-parachain]359git = "https://github.com/paritytech/polkadot"360branch = "release-v0.9.21"361default-features = false362363[dependencies.xcm]364git = "https://github.com/paritytech/polkadot"365branch = "release-v0.9.21"366default-features = false367368[dependencies.xcm-builder]369git = "https://github.com/paritytech/polkadot"370branch = "release-v0.9.21"371default-features = false372373[dependencies.xcm-executor]374git = "https://github.com/paritytech/polkadot"375branch = "release-v0.9.21"376default-features = false377378[dependencies.pallet-xcm]379git = "https://github.com/paritytech/polkadot"380branch = "release-v0.9.21"381default-features = false382383[dependencies.orml-vesting]384git = "https://github.com/uniquenetwork/open-runtime-module-library"385branch = "unique-polkadot-v0.9.21"386version = "0.4.1-dev"387default-features = false388389390391392393[dependencies.rmrk-rpc]394default-features = false395git = "https://github.com/UniqueNetwork/rmrk-substrate.git"396branch = "feature/separate-types-and-traits"397398399400401[dependencies]402log = { version = "0.4.16", default-features = false }403unique-runtime-common = { path = "../common", default-features = false }404scale-info = { version = "2.0.1", default-features = false, features = [405 "derive",406] }407derivative = "2.2.0"408pallet-unique = { path = '../../pallets/unique', default-features = false }409up-rpc = { path = "../../primitives/rpc", default-features = false }410fp-evm-mapping = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.21-logs" }411pallet-inflation = { path = '../../pallets/inflation', default-features = false }412up-data-structs = { path = '../../primitives/data-structs', default-features = false }413pallet-common = { default-features = false, path = "../../pallets/common" }414pallet-structure = { default-features = false, path = "../../pallets/structure" }415pallet-fungible = { default-features = false, path = "../../pallets/fungible" }416pallet-refungible = { default-features = false, path = "../../pallets/refungible" }417pallet-nonfungible = { default-features = false, path = "../../pallets/nonfungible" }418pallet-unq-scheduler = { path = '../../pallets/scheduler', default-features = false }419420pallet-charge-transaction = { git = "https://github.com/uniquenetwork/pallet-sponsoring", branch = "polkadot-v0.9.21", package = "pallet-template-transaction-payment", default-features = false, version = "3.0.0" }421pallet-evm-migration = { path = '../../pallets/evm-migration', default-features = false }422pallet-evm-contract-helpers = { path = '../../pallets/evm-contract-helpers', default-features = false }423pallet-evm-transaction-payment = { path = '../../pallets/evm-transaction-payment', default-features = false }424pallet-evm-coder-substrate = { default-features = false, path = "../../pallets/evm-coder-substrate" }425pallet-evm = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.21-logs" }426pallet-ethereum = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.21-logs" }427pallet-base-fee = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.21-logs" }428fp-rpc = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.21-logs" }429fp-self-contained = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.21-logs" }430431432433434[build-dependencies.substrate-wasm-builder]435git = "https://github.com/paritytech/substrate"436branch = "polkadot-v0.9.21"