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

difftreelog

source

primitives/nft/Cargo.toml1.4 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.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.3' }15frame-system = { default-features = false, version = '3.0.0', git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.3' }16pallet-contracts = { default-features = false, version = '3.0.0', git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.3' }17sp-core = { version = "3.0.0", default-features = false, git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.3' }18sp-runtime = { version = "3.0.0", default-features = false, git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.3' }1920[features]21default = ["std"]22std = [23  "serde/std",24  "codec/std",25  "frame-system/std",26  "frame-support/std",27  "sp-runtime/std",28  "sp-core/std",29  "pallet-contracts/std",30]