1[package]2authors = ['Substrate DevHub <https://github.com/substrate-developer-hub>']3description = 'FRAME pallet nft'4edition = '2018'5homepage = 'https://substrate.io'6license = 'Unlicense'7name = 'pallet-nft'8repository = 'https://github.com/substrate-developer-hub/nft/'9version = '2.1.0'1011[package.metadata.docs.rs]12targets = ['x86_64-unknown-linux-gnu']131415[dependencies.codec]16default-features = false17features = ['derive']18package = 'parity-scale-codec'19version = '1.3.6'2021[dependencies.frame-support]22default-features = false23git = 'https://github.com/usetech-llc/substrate.git'24branch = 'unique'25version = '2.0.1'2627[dependencies.frame-system]28default-features = false29git = 'https://github.com/usetech-llc/substrate.git'30branch = 'unique'31version = '2.0.1'3233[dev-dependencies.sp-core]34default-features = false35git = 'https://github.com/usetech-llc/substrate.git'36branch = 'unique'37version = '2.0.1'3839[dev-dependencies.sp-io]40default-features = false41git = 'https://github.com/usetech-llc/substrate.git'42branch = 'unique'43version = '2.0.1'4445[dependencies.sp-runtime]46default-features = false47git = 'https://github.com/usetech-llc/substrate.git'48branch = 'unique'49version = '2.0.1'50 51[dependencies]5253serde = { version = "1.0.102", features = ["derive"] }54log = "0.4.8"5556[dependencies.sp-std]57default-features = false58git = 'https://github.com/usetech-llc/substrate.git'59branch = 'unique'60version = '2.0.1'6162[dependencies.transaction-payment]63default-features = false64git = 'https://github.com/usetech-llc/substrate.git'65package = 'pallet-transaction-payment'66branch = 'unique'67version = '2.0.1'6869[dependencies.frame-benchmarking]70version = "2.0.1"71default-features = false72git = 'https://github.com/usetech-llc/substrate.git'73branch = 'unique'74optional = true7576[dependencies.pallet-contracts]77default-features = false78git = 'https://github.com/usetech-llc/substrate.git'79package = 'pallet-contracts'80branch = 'unique'81version = '2.0.1'8283[dependencies.pallet-balances]84default-features = false85git = 'https://github.com/usetech-llc/substrate.git'86package = 'pallet-balances'87branch = 'unique'88version = '2.0.1'8990[dependencies.pallet-timestamp]91default-features = false92git = 'https://github.com/usetech-llc/substrate.git'93package = 'pallet-timestamp'94branch = 'unique'95version = '2.0.1'9697[dependencies.pallet-randomness-collective-flip]98default-features = false99git = 'https://github.com/usetech-llc/substrate.git'100package = 'pallet-randomness-collective-flip'101branch = 'unique'102version = '2.0.1'103104[features]105default = ['std']106std = [107 'codec/std',108 "serde/std",109 'frame-support/std',110 'frame-system/std',111 'pallet-balances/std',112 'pallet-timestamp/std',113 'pallet-randomness-collective-flip/std',114 'sp-std/std',115 'sp-runtime/std',116 'frame-benchmarking/std',117]118runtime-benchmarks = ["frame-benchmarking"]