git.delta.rocks / unique-network / refs/commits / 91e514bdbb72

difftreelog

source

pallets/nonfungible/Cargo.toml2.3 KiBsourcehistory
1[package]2name = "pallet-nonfungible"3version = "0.1.12"4license = "GPLv3"5edition = "2021"67[dependencies.codec]8default-features = false9features = ['derive']10package = 'parity-scale-codec'11version = '3.1.2'1213[dependencies]14frame-support = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }15frame-system = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }16sp-runtime = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }17sp-std = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }18sp-core = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }19pallet-evm = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.36" }20pallet-common = { default-features = false, path = '../common' }21pallet-structure = { default-features = false, path = '../structure' }22up-data-structs = { default-features = false, path = '../../primitives/data-structs' }23evm-coder = { default-features = false, path = '../../crates/evm-coder' }24pallet-evm-coder-substrate = { default-features = false, path = '../evm-coder-substrate' }25ethereum = { version = "0.14.0", default-features = false }26frame-benchmarking = { default-features = false, optional = true, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }27scale-info = { version = "2.0.1", default-features = false, features = [28    "derive",29] }30struct-versioning = { path = "../../crates/struct-versioning" }3132[features]33default = ["std"]34std = [35    "frame-support/std",36    "frame-system/std",37    "sp-runtime/std",38    "sp-std/std",39    "up-data-structs/std",40    "pallet-common/std",41    "pallet-structure/std",42    "evm-coder/std",43    "ethereum/std",44    "pallet-evm-coder-substrate/std",45    'frame-benchmarking/std',46    "pallet-evm/std",47]48runtime-benchmarks = [49    'frame-benchmarking',50    'frame-support/runtime-benchmarks',51    'frame-system/runtime-benchmarks',52    'up-data-structs/runtime-benchmarks',53]54try-runtime = ["frame-support/try-runtime"]55stubgen = ["evm-coder/stubgen", "pallet-common/stubgen"]