git.delta.rocks / unique-network / refs/commits / 8f925da4d48d

difftreelog

source

runtime/common/Cargo.toml3.0 KiBsourcehistory
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]35unique-runtime = []36quartz-runtime = []3738refungible = []3940[dependencies.sp-core]41default-features = false42git = "https://github.com/paritytech/substrate"43branch = "polkadot-v0.9.24"4445[dependencies.sp-std]46default-features = false47git = 'https://github.com/paritytech/substrate'48branch = 'polkadot-v0.9.24'4950[dependencies.sp-runtime]51default-features = false52git = "https://github.com/paritytech/substrate"53branch = "polkadot-v0.9.24"5455[dependencies.codec]56default-features = false57features = ['derive']58package = 'parity-scale-codec'59version = '3.1.2'6061[dependencies.scale-info]62default-features = false63features = ["derive"]64version = "2.0.1"6566[dependencies.frame-support]67default-features = false68git = "https://github.com/paritytech/substrate"69branch = "polkadot-v0.9.24"7071[dependencies.frame-system]72default-features = false73git = "https://github.com/paritytech/substrate"74branch = "polkadot-v0.9.24"7576[dependencies.pallet-common]77default-features = false78path = "../../pallets/common"7980[dependencies.pallet-unique]81default-features = false82path = "../../pallets/unique"8384[dependencies.pallet-fungible]85default-features = false86path = "../../pallets/fungible"8788[dependencies.pallet-nonfungible]89default-features = false90path = "../../pallets/nonfungible"9192[dependencies.pallet-refungible]93default-features = false94path = "../../pallets/refungible"9596[dependencies.pallet-unique-scheduler]97default-features = false98path = "../../pallets/scheduler"99100[dependencies.up-data-structs]101default-features = false102path = "../../primitives/data-structs"103104[dependencies.sp-consensus-aura]105default-features = false106git = "https://github.com/paritytech/substrate"107branch = "polkadot-v0.9.24"108109[dependencies.fp-rpc]110default-features = false111git = "https://github.com/uniquenetwork/frontier"112branch = "unique-polkadot-v0.9.24"113114[dependencies]115pallet-evm = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.24" }116evm-coder = { default-features = false, path = '../../crates/evm-coder' }117up-sponsorship = { default-features = false, git = "https://github.com/UniqueNetwork/pallet-sponsoring", branch = 'polkadot-v0.9.24' }118119rmrk-rpc = { default-features = false, path = "../../primitives/rmrk-rpc" }