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

difftreelog

source

pallets/common/Cargo.toml2.2 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.36" }15frame-system = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }16sp-runtime = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }17sp-std = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }18sp-core = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }19frame-benchmarking = { default-features = false, optional = true, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }20fp-evm-mapping = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.36" }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.14.0", default-features = false }25pallet-evm = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.36" }26up-pov-estimate-rpc = { default-features = false, path = "../../primitives/pov-estimate-rpc" }2728serde = { version = "1.0.130", default-features = false }29scale-info = { version = "2.0.1", default-features = false, features = [30    "derive",31] }3233[features]34default = ["std"]35std = [36    "frame-support/std",37    "frame-system/std",38    "sp-runtime/std",39    "sp-std/std",40    "fp-evm-mapping/std",41    "up-data-structs/std",42    "pallet-evm/std",43    "up-pov-estimate-rpc/std",44]45runtime-benchmarks = [46    "frame-benchmarking/runtime-benchmarks",47    "up-data-structs/runtime-benchmarks",48]49try-runtime = ["frame-support/try-runtime"]50stubgen = ["evm-coder/stubgen"]