git.delta.rocks / unique-network / refs/commits / 9029637fc63d

difftreelog

source

pallets/fungible/Cargo.toml1.8 KiBsourcehistory
1[package]2name = "pallet-fungible"3version = "0.1.0"4license = "GPLv3"5edition = "2021"67[dependencies.codec]8default-features = false9features = ['derive']10package = 'parity-scale-codec'11version = '2.0.0'1213[dependencies]14frame-support = { default-features = false, git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.17' }15frame-system = { default-features = false, git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.17' }16sp-runtime = { default-features = false, git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.17' }17sp-std = { default-features = false, git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.17' }18sp-core = { default-features = false, git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.17' }19pallet-common = { default-features = false, path = '../common' }20up-data-structs = { default-features = false, path = '../../primitives/data-structs' }21evm-coder = { default-features = false, path = '../../crates/evm-coder' }22pallet-evm-coder-substrate = { default-features = false, path = '../evm-coder-substrate' }23ethereum = { version = "0.11.1", default-features = false }24frame-benchmarking = { default-features = false, optional = true, git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.17' }25scale-info = { version = "1.0.0", default-features = false, features = [26    "derive",27] }2829[features]30default = ["std"]31std = [32    "frame-support/std",33    "frame-system/std",34    "sp-runtime/std",35    "sp-std/std",36    "up-data-structs/std",37    "pallet-common/std",38    "evm-coder/std",39    "ethereum/std",40    "pallet-evm-coder-substrate/std",41    'frame-benchmarking/std',42]43runtime-benchmarks = ['frame-benchmarking', 'pallet-common/runtime-benchmarks']