git.delta.rocks / unique-network / refs/commits / 7f0dbc230b55

difftreelog

source

primitives/nft/Cargo.toml1.6 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.2.0", default-features = false, features = ['derive'] }13serde = { version = "1.0.119", features = ['derive'], default-features = false, optional = true }14max-encoded-len = { default-features = false, features = ['derive'], version = '3.0.0', git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.8' }15frame-support = { default-features = false, version = '3.0.0', git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.8' }16frame-system = { default-features = false, version = '3.0.0', git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.8' }17sp-core = { version = "3.0.0", default-features = false, git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.8' }18sp-std = { version = "3.0.0", default-features = false, git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.8' }19sp-runtime = { version = "3.0.0", default-features = false, git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.8' }20derivative = "2.2.0"2122[features]23default = ["std"]24std = [25  "serde1",26  "serde/std",27  "codec/std",28  "max-encoded-len/std",29  "frame-system/std",30  "frame-support/std",31  "sp-runtime/std",32  "sp-core/std",33  "sp-std/std",34]35serde1 = ["serde"]36limit-testing = []