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

difftreelog

source

pallets/nft/Cargo.toml1.3 KiBsourcehistory
1[package]2authors = ['Substrate DevHub <https://github.com/substrate-developer-hub>']3description = 'FRAME pallet template'4edition = '2018'5homepage = 'https://usetech.com/blockchain'6license = 'Unlicense'7name = 'pallet-nft'8repository = 'https://github.com/usetech-llc/nft_parachain/'9version = '2.0.0-rc4'1011[package.metadata.docs.rs]12targets = ['x86_64-unknown-linux-gnu']1314[dependencies.codec]15default-features = false16features = ['derive']17package = 'parity-scale-codec'18version = '1.3.1'1920[dependencies.frame-support]21default-features = false22git = 'https://github.com/paritytech/substrate.git'23tag = 'v2.0.0-rc4'24version = '2.0.0-rc4'2526[dependencies.frame-system]27default-features = false28git = 'https://github.com/paritytech/substrate.git'29tag = 'v2.0.0-rc4'30version = '2.0.0-rc4'3132[dev-dependencies.sp-core]33default-features = false34git = 'https://github.com/paritytech/substrate.git'35tag = 'v2.0.0-rc4'36version = '2.0.0-rc4'3738[dev-dependencies.sp-io]39default-features = false40git = 'https://github.com/paritytech/substrate.git'41tag = 'v2.0.0-rc4'42version = '2.0.0-rc4'4344[dependencies.sp-runtime]45default-features = false46git = 'https://github.com/paritytech/substrate.git'47tag = 'v2.0.0-rc4'48version = '2.0.0-rc4'4950[features]51default = ['std']52std = [53    'codec/std',54    'frame-support/std',55    'frame-system/std',56]