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

difftreelog

source

pallets/fungible/Cargo.toml1.5 KiBsourcehistory
1[package]2name = "pallet-fungible"3version = "0.1.0"4edition = "2018"56[dependencies.codec]7default-features = false8features = ['derive']9package = 'parity-scale-codec'10version = '2.0.0'1112[dependencies]13frame-support = { default-features = false, version = '4.0.0-dev', git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.10' }14frame-system = { default-features = false, version = '4.0.0-dev', git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.10' }15sp-runtime = { default-features = false, version = '4.0.0-dev', git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.10' }16sp-std = { default-features = false, version = '4.0.0-dev', git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.10' }17sp-core = { default-features = false, version = '4.0.0-dev', git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.10' }18pallet-common = { default-features = false, path = '../common' }19nft-data-structs = { default-features = false, path = '../../primitives/nft' }20evm-coder = { default-features = false, path = '../../crates/evm-coder' }21ethereum = { default-features = false, version = "0.9.0" }22pallet-evm-coder-substrate = { default-features = false, path = '../evm-coder-substrate' }2324[features]25default = ["std"]26std = [27    "frame-support/std",28    "frame-system/std",29    "sp-runtime/std",30    "sp-std/std",31    "nft-data-structs/std",32    "pallet-common/std",33    "evm-coder/std",34    "ethereum/std",35]36runtime-benchmarks = []