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

difftreelog

source

runtime/opal/Cargo.toml14.3 KiBsourcehistory
1################################################################################2# Package34[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.27"1415[package.metadata.docs.rs]16targets = ['x86_64-unknown-linux-gnu']1718[features]19default = ['std', 'opal-runtime']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-proxy-rmrk-core/runtime-benchmarks',37    'pallet-proxy-rmrk-equip/runtime-benchmarks',38    'pallet-unique/runtime-benchmarks',39    'pallet-inflation/runtime-benchmarks',40    'pallet-app-promotion/runtime-benchmarks',41    'pallet-unique-scheduler/runtime-benchmarks',42    'pallet-xcm/runtime-benchmarks',43    'sp-runtime/runtime-benchmarks',44    'xcm-builder/runtime-benchmarks',45]46try-runtime = [47    'frame-try-runtime',48    'frame-executive/try-runtime',49    'frame-system/try-runtime',50]51std = [52    'codec/std',53    'cumulus-pallet-aura-ext/std',54    'cumulus-pallet-parachain-system/std',55    'cumulus-pallet-xcm/std',56    'cumulus-pallet-xcmp-queue/std',57    'cumulus-primitives-core/std',58    'cumulus-primitives-utility/std',59    'frame-try-runtime/std',60    'frame-executive/std',61    'frame-support/std',62    'frame-system/std',63    'frame-system-rpc-runtime-api/std',64    'pallet-aura/std',65    'pallet-balances/std',66    # 'pallet-contracts/std',67    # 'pallet-contracts-primitives/std',68    # 'pallet-contracts-rpc-runtime-api/std',69    # 'pallet-contract-helpers/std',70    'pallet-randomness-collective-flip/std',71    'pallet-sudo/std',72    'pallet-timestamp/std',73    'pallet-transaction-payment/std',74    'pallet-transaction-payment-rpc-runtime-api/std',75    'pallet-treasury/std',76    # 'pallet-vesting/std',77    'pallet-evm/std',78    'pallet-evm-migration/std',79    'pallet-evm-contract-helpers/std',80    'pallet-evm-transaction-payment/std',81    'pallet-evm-coder-substrate/std',82    'pallet-ethereum/std',83    'pallet-base-fee/std',84    'fp-rpc/std',85    'up-rpc/std',86    'fp-evm-mapping/std',87    'fp-self-contained/std',88    'parachain-info/std',89    'serde',90    'pallet-inflation/std',91    'pallet-configuration/std',92    'pallet-app-promotion/std',93    'pallet-common/std',94    'pallet-structure/std',95    'pallet-fungible/std',96    'pallet-refungible/std',97    'pallet-nonfungible/std',98    'pallet-proxy-rmrk-core/std',99    'pallet-proxy-rmrk-equip/std',100    'pallet-unique/std',101    'pallet-unique-scheduler/std',102    'pallet-charge-transaction/std',103    'up-data-structs/std',104    'sp-api/std',105    'sp-block-builder/std',106    "sp-consensus-aura/std",107    'sp-core/std',108    'sp-inherents/std',109    'sp-io/std',110    'sp-offchain/std',111    'sp-runtime/std',112    'sp-session/std',113    'sp-std/std',114    'sp-transaction-pool/std',115    'sp-version/std',116    'xcm/std',117    'xcm-builder/std',118    'xcm-executor/std',119    'up-common/std',120    'rmrk-rpc/std',121    'evm-coder/std',122    'up-sponsorship/std',123124    "orml-vesting/std",125]126limit-testing = ['pallet-unique/limit-testing', 'up-data-structs/limit-testing']127opal-runtime = ['refungible', 'scheduler', 'rmrk']128129refungible = []130scheduler = []131rmrk = []132133################################################################################134# Substrate Dependencies135136[dependencies.codec]137default-features = false138features = ['derive']139package = 'parity-scale-codec'140version = '3.1.2'141142[dependencies.frame-benchmarking]143default-features = false144git = "https://github.com/paritytech/substrate"145optional = true146branch = "polkadot-v0.9.27"147148[dependencies.frame-try-runtime]149default-features = false150git = "https://github.com/paritytech/substrate"151optional = true152branch = "polkadot-v0.9.27"153154[dependencies.frame-executive]155default-features = false156git = "https://github.com/paritytech/substrate"157branch = "polkadot-v0.9.27"158159[dependencies.frame-support]160default-features = false161git = "https://github.com/paritytech/substrate"162branch = "polkadot-v0.9.27"163164[dependencies.frame-system]165default-features = false166git = "https://github.com/paritytech/substrate"167branch = "polkadot-v0.9.27"168169[dependencies.frame-system-benchmarking]170default-features = false171git = "https://github.com/paritytech/substrate"172optional = true173branch = "polkadot-v0.9.27"174175[dependencies.frame-system-rpc-runtime-api]176default-features = false177git = "https://github.com/paritytech/substrate"178branch = "polkadot-v0.9.27"179180[dependencies.hex-literal]181optional = true182version = '0.3.3'183184[dependencies.serde]185default-features = false186features = ['derive']187optional = true188version = '1.0.130'189190[dependencies.pallet-aura]191default-features = false192git = "https://github.com/paritytech/substrate"193branch = "polkadot-v0.9.27"194195[dependencies.pallet-balances]196default-features = false197git = "https://github.com/paritytech/substrate"198branch = "polkadot-v0.9.27"199200# Contracts specific packages201# [dependencies.pallet-contracts]202# git = 'https://github.com/paritytech/substrate'203# default-features = false204# branch = 'master'205# version = '4.0.0-dev'206207# [dependencies.pallet-contracts-primitives]208# git = 'https://github.com/paritytech/substrate'209# default-features = false210# branch = 'master'211# version = '4.0.0-dev'212213# [dependencies.pallet-contracts-rpc-runtime-api]214# git = 'https://github.com/paritytech/substrate'215# default-features = false216# branch = 'master'217# version = '4.0.0-dev'218219[dependencies.pallet-randomness-collective-flip]220default-features = false221git = "https://github.com/paritytech/substrate"222branch = "polkadot-v0.9.27"223224[dependencies.pallet-sudo]225default-features = false226git = "https://github.com/paritytech/substrate"227branch = "polkadot-v0.9.27"228229[dependencies.pallet-timestamp]230default-features = false231git = "https://github.com/paritytech/substrate"232branch = "polkadot-v0.9.27"233234[dependencies.pallet-transaction-payment]235default-features = false236git = "https://github.com/paritytech/substrate"237branch = "polkadot-v0.9.27"238239[dependencies.pallet-transaction-payment-rpc-runtime-api]240default-features = false241git = "https://github.com/paritytech/substrate"242branch = "polkadot-v0.9.27"243244[dependencies.pallet-treasury]245default-features = false246git = "https://github.com/paritytech/substrate"247branch = "polkadot-v0.9.27"248249# [dependencies.pallet-vesting]250# default-features = false251# git = 'https://github.com/paritytech/substrate'252# branch = 'master'253254[dependencies.sp-arithmetic]255default-features = false256git = "https://github.com/paritytech/substrate"257branch = "polkadot-v0.9.27"258259[dependencies.sp-api]260default-features = false261git = "https://github.com/paritytech/substrate"262branch = "polkadot-v0.9.27"263264[dependencies.sp-block-builder]265default-features = false266git = "https://github.com/paritytech/substrate"267branch = "polkadot-v0.9.27"268269[dependencies.sp-core]270default-features = false271git = "https://github.com/paritytech/substrate"272branch = "polkadot-v0.9.27"273274[dependencies.sp-consensus-aura]275default-features = false276git = "https://github.com/paritytech/substrate"277branch = "polkadot-v0.9.27"278279[dependencies.sp-inherents]280default-features = false281git = "https://github.com/paritytech/substrate"282branch = "polkadot-v0.9.27"283284[dependencies.sp-io]285default-features = false286git = "https://github.com/paritytech/substrate"287branch = "polkadot-v0.9.27"288289[dependencies.sp-offchain]290default-features = false291git = "https://github.com/paritytech/substrate"292branch = "polkadot-v0.9.27"293294[dependencies.sp-runtime]295default-features = false296git = "https://github.com/paritytech/substrate"297branch = "polkadot-v0.9.27"298299[dependencies.sp-session]300default-features = false301git = "https://github.com/paritytech/substrate"302branch = "polkadot-v0.9.27"303304[dependencies.sp-std]305default-features = false306git = "https://github.com/paritytech/substrate"307branch = "polkadot-v0.9.27"308309[dependencies.sp-transaction-pool]310default-features = false311git = "https://github.com/paritytech/substrate"312branch = "polkadot-v0.9.27"313314[dependencies.sp-version]315default-features = false316git = "https://github.com/paritytech/substrate"317branch = "polkadot-v0.9.27"318319[dependencies.smallvec]320version = '1.6.1'321322################################################################################323# Cumulus dependencies324325[dependencies.parachain-info]326default-features = false327git = "https://github.com/paritytech/cumulus"328branch = "polkadot-v0.9.27"329330[dependencies.cumulus-pallet-aura-ext]331git = "https://github.com/paritytech/cumulus"332branch = "polkadot-v0.9.27"333default-features = false334335[dependencies.cumulus-pallet-parachain-system]336git = "https://github.com/paritytech/cumulus"337branch = "polkadot-v0.9.27"338default-features = false339340[dependencies.cumulus-primitives-core]341git = "https://github.com/paritytech/cumulus"342branch = "polkadot-v0.9.27"343default-features = false344345[dependencies.cumulus-pallet-xcm]346git = "https://github.com/paritytech/cumulus"347branch = "polkadot-v0.9.27"348default-features = false349350[dependencies.cumulus-pallet-dmp-queue]351git = "https://github.com/paritytech/cumulus"352branch = "polkadot-v0.9.27"353default-features = false354355[dependencies.cumulus-pallet-xcmp-queue]356git = "https://github.com/paritytech/cumulus"357branch = "polkadot-v0.9.27"358default-features = false359360[dependencies.cumulus-primitives-utility]361git = "https://github.com/paritytech/cumulus"362branch = "polkadot-v0.9.27"363default-features = false364365[dependencies.cumulus-primitives-timestamp]366git = "https://github.com/paritytech/cumulus"367branch = "polkadot-v0.9.27"368default-features = false369370################################################################################371# Polkadot dependencies372373[dependencies.polkadot-parachain]374git = "https://github.com/paritytech/polkadot"375branch = "release-v0.9.27"376default-features = false377378[dependencies.xcm]379git = "https://github.com/paritytech/polkadot"380branch = "release-v0.9.27"381default-features = false382383[dependencies.xcm-builder]384git = "https://github.com/paritytech/polkadot"385branch = "release-v0.9.27"386default-features = false387388[dependencies.xcm-executor]389git = "https://github.com/paritytech/polkadot"390branch = "release-v0.9.27"391default-features = false392393[dependencies.pallet-xcm]394git = "https://github.com/paritytech/polkadot"395branch = "release-v0.9.27"396default-features = false397398[dependencies.orml-vesting]399git = "https://github.com/open-web3-stack/open-runtime-module-library"400branch = "polkadot-v0.9.27"401version = "0.4.1-dev"402default-features = false403404################################################################################405# local dependencies406407[dependencies]408log = { version = "0.4.16", default-features = false }409up-common = { path = "../../primitives/common", default-features = false }410scale-info = { version = "2.0.1", default-features = false, features = [411    "derive",412] }413derivative = "2.2.0"414pallet-unique = { path = '../../pallets/unique', default-features = false }415up-rpc = { path = "../../primitives/rpc", default-features = false }416rmrk-rpc = { path = "../../primitives/rmrk-rpc", default-features = false }417fp-evm-mapping = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.27" }418pallet-inflation = { path = '../../pallets/inflation', default-features = false }419pallet-app-promotion = { path = '../../pallets/app-promotion', default-features = false }420up-data-structs = { path = '../../primitives/data-structs', default-features = false }421pallet-configuration = { default-features = false, path = "../../pallets/configuration" }422pallet-common = { default-features = false, path = "../../pallets/common" }423pallet-structure = { default-features = false, path = "../../pallets/structure" }424pallet-fungible = { default-features = false, path = "../../pallets/fungible" }425pallet-refungible = { default-features = false, path = "../../pallets/refungible" }426pallet-nonfungible = { default-features = false, path = "../../pallets/nonfungible" }427pallet-proxy-rmrk-core = { default-features = false, path = "../../pallets/proxy-rmrk-core", package = "pallet-rmrk-core" }428pallet-proxy-rmrk-equip = { default-features = false, path = "../../pallets/proxy-rmrk-equip", package = "pallet-rmrk-equip" }429pallet-unique-scheduler = { path = '../../pallets/scheduler', default-features = false }430# pallet-contract-helpers = { path = '../pallets/contract-helpers', default-features = false, version = '0.1.0' }431pallet-charge-transaction = { git = "https://github.com/uniquenetwork/pallet-sponsoring", branch = "polkadot-v0.9.27", package = "pallet-template-transaction-payment", default-features = false, version = "3.0.0" }432pallet-evm-migration = { path = '../../pallets/evm-migration', default-features = false }433pallet-evm-contract-helpers = { path = '../../pallets/evm-contract-helpers', default-features = false }434pallet-evm-transaction-payment = { path = '../../pallets/evm-transaction-payment', default-features = false }435pallet-evm-coder-substrate = { default-features = false, path = "../../pallets/evm-coder-substrate" }436pallet-evm = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.27" }437pallet-ethereum = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.27" }438pallet-base-fee = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.27" }439fp-rpc = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.27" }440fp-self-contained = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.27" }441evm-coder = { default-features = false, path = '../../crates/evm-coder' }442up-sponsorship = { default-features = false, git = "https://github.com/uniquenetwork/pallet-sponsoring", branch = 'polkadot-v0.9.27' }443444################################################################################445# Build Dependencies446447[build-dependencies.substrate-wasm-builder]448git = "https://github.com/paritytech/substrate"449branch = "polkadot-v0.9.27"