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

difftreelog

source

pallets/common/Cargo.toml2.0 KiBsourcehistory
1[package]2name = "pallet-common"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.30" }15frame-system = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.30" }16sp-runtime = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.30" }17sp-std = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.30" }18sp-core = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.30" }19frame-benchmarking = { default-features = false, optional = true, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.30" }20fp-evm-mapping = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.30-2" }21up-data-structs = { default-features = false, path = '../../primitives/data-structs' }22pallet-evm-coder-substrate = { default-features = false, path = '../../pallets/evm-coder-substrate' }23evm-coder = { default-features = false, path = '../../crates/evm-coder' }24ethereum = { version = "0.12.0", default-features = false }25pallet-evm = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.30-2" }2627serde = { version = "1.0.130", default-features = false }28scale-info = { version = "2.0.1", default-features = false, features = [29    "derive",30] }3132[features]33default = ["std"]34std = [35    "frame-support/std",36    "frame-system/std",37    "sp-runtime/std",38    "sp-std/std",39    "fp-evm-mapping/std",40    "up-data-structs/std",41    "pallet-evm/std",42]43runtime-benchmarks = [44    "frame-benchmarking/runtime-benchmarks",45    "up-data-structs/runtime-benchmarks",46]47try-runtime = ["frame-support/try-runtime"]48stubgen = ["evm-coder/stubgen"]