1[package]2authors = ['Substrate DevHub <https://github.com/substrate-developer-hub>']3description = 'Unqiue pallet nft specific transaction payment'4edition = '2018'5homepage = 'https://substrate.io'6license = 'Unlicense'7name = 'pallet-nft-charge-transaction'8repository = 'https://github.com/usetech-llc/nft_private/'9version = '3.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 = '2.0.0'2021[dependencies]22serde = { version = "1.0.119", default-features = false }23frame-support = { default-features = false, version = '3.0.0', git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.3' }24frame-system = { default-features = false, version = '3.0.0', git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.3' }25pallet-balances = { default-features = false, version = '3.0.0', git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.3' }26pallet-contracts = { default-features = false, version = '3.0.0', git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.3' }27pallet-timestamp = { default-features = false, version = '3.0.0', git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.3' }28pallet-transaction-payment = { default-features = false, version = "3.0.0", git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.3' }29pallet-randomness-collective-flip = { default-features = false, version = '3.0.0', git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.3' }30sp-std = { default-features = false, version = '3.0.0', git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.3' }31frame-benchmarking = { default-features = false, version = "3.0.0", optional = true, git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.3' }32sp-core = { default-features = false, version = '3.0.0', git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.3' }33sp-io = { default-features = false, version = '3.0.0', git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.3' }34sp-runtime = { default-features = false, version = '3.0.0', git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.3' }3536pallet-nft = { default-features = false, path="../nft" }37pallet-nft-transaction-payment = { default-features = false, path="../nft-transaction-payment" }38nft-data-structs = { default-features = false, path="../../primitives", version = "0.9.0" }3940[features]41default = ['std']42std = [43 'codec/std',44 'serde/std',45 'frame-support/std',46 'frame-system/std',47 'pallet-balances/std',48 'pallet-timestamp/std',49 'pallet-randomness-collective-flip/std',50 'pallet-contracts/std',51 'pallet-nft/std',52 'pallet-transaction-payment/std',53 'pallet-nft-transaction-payment/std',54 'sp-std/std',55 'sp-runtime/std',56 'nft-data-structs/std',57 'frame-benchmarking/std',58]59runtime-benchmarks = ["frame-benchmarking"]