git.delta.rocks / unique-network / refs/commits / fa5b8f114031

difftreelog

source

primitives/data-structs/Cargo.toml1.4 KiBsourcehistory
1[package]2name = "up-data-structs"3authors = ["Unique Network <support@uniquenetwork.io>"]4description = "Unique data structs definitions"5edition = "2018"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.12' }20frame-system = { default-features = false, git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.12' }21sp-core = { default-features = false, git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.12' }22sp-std = { default-features = false, git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.12' }23sp-runtime = { default-features = false, git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.12' }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 = []