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

difftreelog

source

pallets/nft/Cargo.toml1.4 KiBsourcehistory
1[dependencies.codec]2default-features = false3features = ['derive']4package = 'parity-scale-codec'5version = '1.3.0'67[dependencies.frame-support]8default-features = false9git = 'https://github.com/usetech-llc/substrate.git'10branch = 'rc4_ext_dispatch_reenabled'11version = '2.0.0-rc4'1213[dependencies.frame-system]14default-features = false15git = 'https://github.com/usetech-llc/substrate.git'16branch = 'rc4_ext_dispatch_reenabled'17version = '2.0.0-rc4'18[dev-dependencies.sp-core]19default-features = false20git = 'https://github.com/usetech-llc/substrate.git'21branch = 'rc4_ext_dispatch_reenabled'22version = '2.0.0-rc4'2324[dev-dependencies.sp-io]25default-features = false26git = 'https://github.com/usetech-llc/substrate.git'27branch = 'rc4_ext_dispatch_reenabled'28version = '2.0.0-rc4'2930[dependencies.sp-runtime]31default-features = false32git = 'https://github.com/usetech-llc/substrate.git'33branch = 'rc4_ext_dispatch_reenabled'34version = '2.0.0-rc4'3536[package]37authors = ['Substrate DevHub <https://github.com/substrate-developer-hub>']38description = 'FRAME pallet nft'39edition = '2018'40homepage = 'https://substrate.io'41license = 'Unlicense'42name = 'pallet-nft'43repository = 'https://github.com/substrate-developer-hub/nft/'44version = '2.0.0-rc4'45[package.metadata.docs.rs]46targets = ['x86_64-unknown-linux-gnu']4748[features]49default = ['std']50std = [51    'codec/std',52    'frame-support/std',53    'frame-system/std',54    'sp-runtime/std',55]