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.1.0'1011[features]12default = ['std']13std = [14 'sp-core/std',15 'sp-runtime/std',16 'codec/std',17 'frame-support/std',18 'frame-system/std',19]20runtime-benchmarks = [21 'sp-runtime/runtime-benchmarks',22 'frame-support/runtime-benchmarks',23 'frame-system/runtime-benchmarks'24]2526[dependencies.sp-core]27default-features = false28git = 'https://github.com/paritytech/substrate.git'29branch = 'polkadot-v0.9.17'3031[dependencies.sp-runtime]32default-features = false33git = 'https://github.com/paritytech/substrate.git'34branch = 'polkadot-v0.9.17'3536[dependencies.codec]37default-features = false38features = ['derive']39package = 'parity-scale-codec'40version = '2.3.0'4142[dependencies.scale-info]43default-features = false44features = ["derive"]45version = "1.0.0"4647[dependencies.frame-support]48default-features = false49git = 'https://github.com/paritytech/substrate.git'50branch = 'polkadot-v0.9.17'5152[dependencies.frame-system]53default-features = false54git = 'https://github.com/paritytech/substrate.git'55branch = 'polkadot-v0.9.17'