git.delta.rocks / unique-network / refs/commits / 6ac8e66dbab7

difftreelog

source

pallets/refungible/Cargo.toml1.8 KiBsourcehistory
1[package]2name = "pallet-refungible"3version = "0.1.0"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.20" }15frame-system = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.20" }16sp-runtime = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.20" }17sp-std = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.20" }18sp-core = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.20" }19pallet-evm = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.20" }20pallet-common = { default-features = false, path = '../common' }21pallet-structure = { default-features = false, path = '../structure' }22up-data-structs = { default-features = false, path = '../../primitives/data-structs' }23frame-benchmarking = { default-features = false, optional = true, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.20" }24scale-info = { version = "2.0.1", default-features = false, features = [25    "derive",26] }2728[features]29default = ["std"]30std = [31    "frame-support/std",32    "frame-system/std",33    "sp-runtime/std",34    "sp-std/std",35    "up-data-structs/std",36    "pallet-common/std",37    "pallet-structure/std",38    'frame-benchmarking/std',39    "pallet-evm/std",40]41runtime-benchmarks = [42    'frame-benchmarking',43    'frame-support/runtime-benchmarks',44    'frame-system/runtime-benchmarks',45]