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