1[package]2name = "up-data-structs"3authors = ["Unique Network <support@uniquenetwork.io>"]4description = "Unique data structs definitions"5edition = "2021"6license = 'All Rights Reserved'7homepage = "https://unique.network"8repository = 'https://github.com/UniqueNetwork/unique-chain'9version = '0.1.0'1011[dependencies]12scale-info = { version = "1.0.0", default-features = false, features = ["derive"] }13codec = { package = "parity-scale-codec", version = "2.3.0", default-features = false, features = [14 'derive',15] }16serde = { version = "1.0.130", features = [17 'derive',18], default-features = false, optional = true }19frame-support = { default-features = false, git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.13' }20frame-system = { default-features = false, git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.13' }21sp-core = { default-features = false, git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.13' }22sp-std = { default-features = false, git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.13' }23sp-runtime = { default-features = false, git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.13' }24derivative = "2.2.0"2526[features]27default = ["std"]28std = [29 "serde1",30 "serde/std",31 "codec/std",32 "frame-system/std",33 "frame-support/std",34 "sp-runtime/std",35 "sp-core/std",36 "sp-std/std",37]38serde1 = ["serde"]39limit-testing = []