1234[package]5authors = ['Unique Network <support@uniquenetwork.io>']6build = 'build.rs'7description = 'Unique Runtime'8edition = '2021'9homepage = 'https://unique.network'10license = 'GPLv3'11name = 'unique-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', 'unique-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-collator-selection/runtime-benchmarks",31 'pallet-timestamp/runtime-benchmarks',32 'pallet-common/runtime-benchmarks',33 'pallet-structure/runtime-benchmarks',34 'pallet-fungible/runtime-benchmarks',35 'pallet-refungible/runtime-benchmarks',36 'pallet-nonfungible/runtime-benchmarks',37 'pallet-proxy-rmrk-core/runtime-benchmarks',38 'pallet-proxy-rmrk-equip/runtime-benchmarks',39 'pallet-unique/runtime-benchmarks',40 'pallet-inflation/runtime-benchmarks',41 'pallet-unique-scheduler/runtime-benchmarks',42 'pallet-xcm/runtime-benchmarks',43 'sp-runtime/runtime-benchmarks',44 'xcm-builder/runtime-benchmarks',45 'up-data-structs/runtime-benchmarks',46]47try-runtime = [48 'frame-try-runtime',49 'frame-executive/try-runtime',50 'frame-system/try-runtime',51]52std = [53 'codec/std',54 'cumulus-pallet-aura-ext/std',55 'cumulus-pallet-parachain-system/std',56 'cumulus-pallet-xcm/std',57 'cumulus-pallet-xcmp-queue/std',58 'cumulus-primitives-core/std',59 'cumulus-primitives-utility/std',60 'frame-try-runtime/std',61 'frame-executive/std',62 'frame-support/std',63 'frame-system/std',64 'frame-system-rpc-runtime-api/std',65 'pallet-aura/std',66 'pallet-balances/std',67 68 69 70 71 "pallet-authorship/std",72 'pallet-collator-selection/std',73 "pallet-session/std",74 'pallet-randomness-collective-flip/std',75 'pallet-sudo/std',76 'pallet-timestamp/std',77 'pallet-transaction-payment/std',78 'pallet-transaction-payment-rpc-runtime-api/std',79 'pallet-treasury/std',80 81 'pallet-evm/std',82 'pallet-evm-migration/std',83 'pallet-evm-contract-helpers/std',84 'pallet-evm-transaction-payment/std',85 'pallet-evm-coder-substrate/std',86 'pallet-ethereum/std',87 'pallet-base-fee/std',88 'fp-rpc/std',89 'up-rpc/std',90 'fp-evm-mapping/std',91 'fp-self-contained/std',92 'parachain-info/std',93 'serde',94 'pallet-inflation/std',95 'pallet-configuration/std',96 'pallet-common/std',97 'pallet-structure/std',98 'pallet-fungible/std',99 'pallet-refungible/std',100 'pallet-nonfungible/std',101 'pallet-proxy-rmrk-core/std',102 'pallet-proxy-rmrk-equip/std',103 'pallet-unique/std',104 'pallet-unique-scheduler/std',105 'pallet-charge-transaction/std',106 'up-data-structs/std',107 'sp-api/std',108 'sp-block-builder/std',109 "sp-consensus-aura/std",110 'sp-core/std',111 'sp-inherents/std',112 'sp-io/std',113 'sp-offchain/std',114 'sp-runtime/std',115 'sp-session/std',116 'sp-std/std',117 'sp-transaction-pool/std',118 'sp-version/std',119 'xcm/std',120 'xcm-builder/std',121 'xcm-executor/std',122 'up-common/std',123124 "orml-vesting/std",125]126limit-testing = ['pallet-unique/limit-testing', 'up-data-structs/limit-testing']127unique-runtime = []128129refungible = []130scheduler = []131rmrk = []132133134135136[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-collator-selection]196default-features = false197git = 'https://github.com/paritytech/cumulus'198branch = 'polkadot-v0.9.27'199200[dependencies.pallet-authorship]201default-features = false202git = 'https://github.com/paritytech/substrate'203branch = 'polkadot-v0.9.27'204205[dependencies.pallet-session]206default-features = false207git = 'https://github.com/paritytech/substrate'208branch = 'polkadot-v0.9.27'209210[dependencies.pallet-balances]211default-features = false212git = "https://github.com/paritytech/substrate"213branch = "polkadot-v0.9.27"214215216217218219220221222223224225226227228229230231232233234[dependencies.pallet-randomness-collective-flip]235default-features = false236git = "https://github.com/paritytech/substrate"237branch = "polkadot-v0.9.27"238239[dependencies.pallet-sudo]240default-features = false241git = "https://github.com/paritytech/substrate"242branch = "polkadot-v0.9.27"243244[dependencies.pallet-timestamp]245default-features = false246git = "https://github.com/paritytech/substrate"247branch = "polkadot-v0.9.27"248249[dependencies.pallet-transaction-payment]250default-features = false251git = "https://github.com/paritytech/substrate"252branch = "polkadot-v0.9.27"253254[dependencies.pallet-transaction-payment-rpc-runtime-api]255default-features = false256git = "https://github.com/paritytech/substrate"257branch = "polkadot-v0.9.27"258259[dependencies.pallet-treasury]260default-features = false261git = "https://github.com/paritytech/substrate"262branch = "polkadot-v0.9.27"263264265266267268269[dependencies.sp-arithmetic]270default-features = false271git = "https://github.com/paritytech/substrate"272branch = "polkadot-v0.9.27"273274[dependencies.sp-api]275default-features = false276git = "https://github.com/paritytech/substrate"277branch = "polkadot-v0.9.27"278279[dependencies.sp-block-builder]280default-features = false281git = "https://github.com/paritytech/substrate"282branch = "polkadot-v0.9.27"283284[dependencies.sp-core]285default-features = false286git = "https://github.com/paritytech/substrate"287branch = "polkadot-v0.9.27"288289[dependencies.sp-consensus-aura]290default-features = false291git = "https://github.com/paritytech/substrate"292branch = "polkadot-v0.9.27"293294[dependencies.sp-inherents]295default-features = false296git = "https://github.com/paritytech/substrate"297branch = "polkadot-v0.9.27"298299[dependencies.sp-io]300default-features = false301git = "https://github.com/paritytech/substrate"302branch = "polkadot-v0.9.27"303304[dependencies.sp-offchain]305default-features = false306git = "https://github.com/paritytech/substrate"307branch = "polkadot-v0.9.27"308309[dependencies.sp-runtime]310default-features = false311git = "https://github.com/paritytech/substrate"312branch = "polkadot-v0.9.27"313314[dependencies.sp-session]315default-features = false316git = "https://github.com/paritytech/substrate"317branch = "polkadot-v0.9.27"318319[dependencies.sp-std]320default-features = false321git = "https://github.com/paritytech/substrate"322branch = "polkadot-v0.9.27"323324[dependencies.sp-transaction-pool]325default-features = false326git = "https://github.com/paritytech/substrate"327branch = "polkadot-v0.9.27"328329[dependencies.sp-version]330default-features = false331git = "https://github.com/paritytech/substrate"332branch = "polkadot-v0.9.27"333334[dependencies.smallvec]335version = '1.6.1'336337338339340[dependencies.parachain-info]341default-features = false342git = "https://github.com/paritytech/cumulus"343branch = "polkadot-v0.9.27"344345[dependencies.cumulus-pallet-aura-ext]346git = "https://github.com/paritytech/cumulus"347branch = "polkadot-v0.9.27"348default-features = false349350[dependencies.cumulus-pallet-parachain-system]351git = "https://github.com/paritytech/cumulus"352branch = "polkadot-v0.9.27"353default-features = false354355[dependencies.cumulus-primitives-core]356git = "https://github.com/paritytech/cumulus"357branch = "polkadot-v0.9.27"358default-features = false359360[dependencies.cumulus-pallet-xcm]361git = "https://github.com/paritytech/cumulus"362branch = "polkadot-v0.9.27"363default-features = false364365[dependencies.cumulus-pallet-dmp-queue]366git = "https://github.com/paritytech/cumulus"367branch = "polkadot-v0.9.27"368default-features = false369370[dependencies.cumulus-pallet-xcmp-queue]371git = "https://github.com/paritytech/cumulus"372branch = "polkadot-v0.9.27"373default-features = false374375[dependencies.cumulus-primitives-utility]376git = "https://github.com/paritytech/cumulus"377branch = "polkadot-v0.9.27"378default-features = false379380[dependencies.cumulus-primitives-timestamp]381git = "https://github.com/paritytech/cumulus"382branch = "polkadot-v0.9.27"383default-features = false384385386387388[dependencies.polkadot-parachain]389git = "https://github.com/paritytech/polkadot"390branch = "release-v0.9.27"391default-features = false392393[dependencies.xcm]394git = "https://github.com/paritytech/polkadot"395branch = "release-v0.9.27"396default-features = false397398[dependencies.xcm-builder]399git = "https://github.com/paritytech/polkadot"400branch = "release-v0.9.27"401default-features = false402403[dependencies.xcm-executor]404git = "https://github.com/paritytech/polkadot"405branch = "release-v0.9.27"406default-features = false407408[dependencies.pallet-xcm]409git = "https://github.com/paritytech/polkadot"410branch = "release-v0.9.27"411default-features = false412413[dependencies.orml-vesting]414git = "https://github.com/open-web3-stack/open-runtime-module-library"415branch = "polkadot-v0.9.27"416version = "0.4.1-dev"417default-features = false418419420421422[dependencies]423log = { version = "0.4.16", default-features = false }424up-common = { path = "../../primitives/common", default-features = false }425scale-info = { version = "2.0.1", default-features = false, features = [426 "derive",427] }428derivative = "2.2.0"429pallet-unique = { path = '../../pallets/unique', default-features = false }430up-rpc = { path = "../../primitives/rpc", default-features = false }431rmrk-rpc = { path = "../../primitives/rmrk-rpc", default-features = false }432pallet-inflation = { path = '../../pallets/inflation', default-features = false }433up-data-structs = { path = '../../primitives/data-structs', default-features = false }434pallet-configuration = { default-features = false, path = "../../pallets/configuration" }435pallet-common = { default-features = false, path = "../../pallets/common" }436pallet-structure = { default-features = false, path = "../../pallets/structure" }437pallet-fungible = { default-features = false, path = "../../pallets/fungible" }438pallet-refungible = { default-features = false, path = "../../pallets/refungible" }439pallet-nonfungible = { default-features = false, path = "../../pallets/nonfungible" }440pallet-proxy-rmrk-core = { default-features = false, path = "../../pallets/proxy-rmrk-core", package = "pallet-rmrk-core" }441pallet-proxy-rmrk-equip = { default-features = false, path = "../../pallets/proxy-rmrk-equip", package = "pallet-rmrk-equip" }442pallet-unique-scheduler = { path = '../../pallets/scheduler', default-features = false }443444pallet-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" }445pallet-evm-migration = { path = '../../pallets/evm-migration', default-features = false }446pallet-evm-contract-helpers = { path = '../../pallets/evm-contract-helpers', default-features = false }447pallet-evm-transaction-payment = { path = '../../pallets/evm-transaction-payment', default-features = false }448pallet-evm-coder-substrate = { default-features = false, path = "../../pallets/evm-coder-substrate" }449pallet-evm = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.27" }450pallet-ethereum = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.27" }451pallet-base-fee = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.27" }452fp-rpc = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.27" }453fp-self-contained = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.27" }454fp-evm-mapping = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.27" }455evm-coder = { default-features = false, path = '../../crates/evm-coder' }456up-sponsorship = { default-features = false, git = "https://github.com/uniquenetwork/pallet-sponsoring", branch = 'polkadot-v0.9.27' }457458459460461[build-dependencies.substrate-wasm-builder]462git = "https://github.com/paritytech/substrate"463branch = "polkadot-v0.9.27"