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

difftreelog

source

primitives/nft/Cargo.toml1.5 KiBsourcehistory
1[package]2name = "nft-data-structs"3authors = ['Substrate DevHub <https://github.com/substrate-developer-hub>']4description = "Nft data structs definitions"5edition = "2018"6license = 'GPL-3.0'7homepage = "https://substrate.dev"8repository = 'https://github.com/clover-network/clover'9version = '0.9.0'1011[dependencies]12codec = { package = "parity-scale-codec", version = "2.3.0", default-features = false, features = [13  'derive',14] }15serde = { version = "1.0.130", features = [16  'derive',17], default-features = false, optional = true }18frame-support = { default-features = false, version = '4.0.0-dev', git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.10' }19frame-system = { default-features = false, version = '4.0.0-dev', git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.10' }20sp-core = { version = "4.0.0-dev", default-features = false, git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.10' }21sp-std = { version = "4.0.0-dev", default-features = false, git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.10' }22sp-runtime = { version = "4.0.0-dev", default-features = false, git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.10' }23derivative = "2.2.0"2425[features]26default = ["std"]27std = [28  "serde1",29  "serde/std",30  "codec/std",31  "frame-system/std",32  "frame-support/std",33  "sp-runtime/std",34  "sp-core/std",35  "sp-std/std",36]37serde1 = ["serde"]38limit-testing = []