git.delta.rocks / unique-network / refs/commits / 2f9c8d434e2f

difftreelog

source

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