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

difftreelog

source

pallets/nft/Cargo.toml4.3 KiBsourcehistory
1################################################################################2# Package34[package]5authors = ['Unique Network <support@uniquenetwork.io>']6description = 'Substrate node nft'7edition = '2018'8homepage = 'https://unique.network'9license = 'All Rights Reserved'10name = 'pallet-nft'11repository = 'https://github.com/usetech-llc/nft_private/'12version = '3.0.0'1314[package.metadata.docs.rs]15targets = ['x86_64-unknown-linux-gnu']1617[features]18default = ['std']19runtime-benchmarks = ['frame-benchmarking']20std = [21    'codec/std',22    'serde/std',23    'frame-support/std',24    'frame-system/std',25    'pallet-balances/std',26    'pallet-evm/std',27    'pallet-timestamp/std',28    'pallet-contracts/std',29    'pallet-randomness-collective-flip/std',30    'pallet-transaction-payment/std',31    'fp-evm/std',32    'nft-data-structs/std',33    'sp-std/std',34    'sp-api/std',35    'sp-runtime/std',36    'frame-benchmarking/std',37    'ethereum/std',38    'rlp/std',3940    'ethereum-tx-sign',41    'primitive-types/std',42    'evm-coder/std',43]4445################################################################################46# Substrate Dependencies4748[dependencies.codec]49default-features = false50features = ['derive']51package = 'parity-scale-codec'52version = '2.0.0'5354[dependencies.frame-benchmarking]55default-features = false56optional = true57git = 'https://github.com/paritytech/substrate.git'58branch = 'polkadot-v0.9.3'59version = '3.0.0'6061[dependencies.frame-support]62default-features = false63git = 'https://github.com/paritytech/substrate.git'64branch = 'polkadot-v0.9.3'65version = '3.0.0'6667[dependencies.frame-system]68default-features = false69git = 'https://github.com/paritytech/substrate.git'70branch = 'polkadot-v0.9.3'71version = '3.0.0'7273[dependencies.pallet-balances]74default-features = false75git = 'https://github.com/paritytech/substrate.git'76branch = 'polkadot-v0.9.3'77version = '3.0.0'7879[dependencies.pallet-timestamp]80default-features = false81git = 'https://github.com/paritytech/substrate.git'82branch = 'polkadot-v0.9.3'83version = '3.0.0'8485[dependencies.pallet-randomness-collective-flip]86default-features = false87git = 'https://github.com/paritytech/substrate.git'88branch = 'polkadot-v0.9.3'89version = '3.0.0'9091[dependencies.sp-std]92default-features = false93git = 'https://github.com/paritytech/substrate.git'94branch = 'polkadot-v0.9.3'95version = '3.0.0'9697[dependencies.pallet-contracts]98default-features = false99git = 'https://github.com/paritytech/substrate.git'100branch = 'polkadot-v0.9.3'101version = '3.0.0'102103[dependencies.pallet-transaction-payment]104default-features = false105git = 'https://github.com/paritytech/substrate.git'106branch = 'polkadot-v0.9.3'107version = '3.0.0'108109[dependencies.serde]110default-features = false111features = ['derive']112version = '1.0.119'113114[dependencies.sp-runtime]115default-features = false116git = 'https://github.com/paritytech/substrate.git'117branch = 'polkadot-v0.9.3'118version = '3.0.0'119120[dependencies.sp-core]121default-features = false122git = 'https://github.com/paritytech/substrate.git'123branch = 'polkadot-v0.9.3'124version = '3.0.0'125126[dependencies.sp-io]127default-features = false128git = 'https://github.com/paritytech/substrate.git'129branch = 'polkadot-v0.9.3'130version = '3.0.0'131132133################################################################################134# Local Dependencies135136[dependencies.nft-data-structs]137default-features = false138path = '../../primitives'139version = '0.9.0'140141142[dependencies]143ethereum-tx-sign = { version = "3.0.4", optional = true }144ethereum = { default-features = false, version = "0.7.1" }145rlp = { default-features = false, version = "0.5.0" }146sp-api = { default-features = false, version = '3.0.0', git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.3" }147148evm-coder = { default-features = false, path = "../../crates/evm-coder" }149primitive-types = { version = "0.9.0", default-features = false, features = ["serde_no_std"] }150151pallet-evm = { default-features = false, version = "4.0.0-dev", git = "https://github.com/usetech-llc/frontier.git", branch = "injected-transactions-parachain" }152pallet-ethereum = { default-features = false, version = "2.0.0-dev", git = "https://github.com/usetech-llc/frontier.git", branch = "injected-transactions-parachain" }153fp-evm = { default-features = false, version = '2.0.0', git = "https://github.com/usetech-llc/frontier.git", branch = "injected-transactions-parachain" }154hex-literal = "0.3.1"