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.0.0", default-features = false, features = ['derive'] }13serde = { version = "1.0.119", features = ['derive'], default-features = false }14frame-support = { default-features = false, version = '3.0.0', git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.7' }15frame-system = { default-features = false, version = '3.0.0', git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.7' }16sp-core = { version = "3.0.0", default-features = false, git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.7' }17sp-runtime = { version = "3.0.0", default-features = false, git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.7' }1819[features]20default = ["std"]21std = [22 "serde/std",23 "codec/std",24 "frame-system/std",25 "frame-support/std",26 "sp-runtime/std",27 "sp-core/std",28]