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.0.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.4'2021[dependencies.frame-support]22default-features = false23git = 'https://github.com/usetech-llc/substrate.git'24branch = 'v2.0.0_release'25version = '2.0.0'2627[dependencies.frame-system]28default-features = false29git = 'https://github.com/usetech-llc/substrate.git'30branch = 'v2.0.0_release'31version = '2.0.0'3233[dev-dependencies.sp-core]34default-features = false35git = 'https://github.com/usetech-llc/substrate.git'36branch = 'v2.0.0_release'37version = '2.0.0'3839[dev-dependencies.sp-io]40default-features = false41git = 'https://github.com/usetech-llc/substrate.git'42branch = 'v2.0.0_release'43version = '2.0.0'4445[dependencies.sp-runtime]46default-features = false47git = 'https://github.com/usetech-llc/substrate.git'48branch = 'v2.0.0_release'49version = '2.0.0'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 = 'v2.0.0_release'60version = '2.0.0'6162[dependencies.transaction-payment]63default-features = false64git = 'https://github.com/usetech-llc/substrate.git'65package = 'pallet-transaction-payment'66branch = 'v2.0.0_release'67version = '2.0.0'6869[dependencies.frame-benchmarking]70version = "2.0.0"71default-features = false72git = 'https://github.com/usetech-llc/substrate.git'73branch = 'v2.0.0_release'74optional = true7576[features]77default = ['std']78std = [79 'codec/std',80 "serde/std",81 'frame-support/std',82 'frame-system/std',83 'sp-std/std',84 'sp-runtime/std',85 'frame-benchmarking/std',86]87runtime-benchmarks = ["frame-benchmarking"]