1[package]2authors = ['Unique Network <support@uniquenetwork.io>']3description = 'Unique Runtime Common Primitives'4edition = '2021'5homepage = 'https://unique.network'6license = 'All Rights Reserved'7name = 'up-common'8repository = 'https://github.com/UniqueNetwork/unique-chain'9version.workspace = true1011[features]12default = ['std']13std = [14 'cumulus-primitives-core/std',15 'fp-rpc/std',16 'frame-support/std',17 'pallet-evm/std',18 'sp-consensus-aura/std',19 'sp-core/std',20 'sp-runtime/std',21 'sp-std/std',22]2324[dependencies]25cumulus-primitives-core = { default-features = false, git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.36" }26fp-rpc = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.36" }27frame-support = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }28pallet-evm = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.36" }29sp-consensus-aura = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }30sp-core = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }31sp-runtime = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }32sp-std = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }