git.delta.rocks / unique-network / refs/commits / 7276bd5d368c

difftreelog

source

pallets/evm-coder-substrate/Cargo.toml1.5 KiBsourcehistory
1[package]2edition = "2021"3license = "GPLv3"4name = "pallet-evm-coder-substrate"5version = "0.1.3"67[dependencies]8codec = { default-features = false, features = ['derive'], package = 'parity-scale-codec', version = "3.2.2" }9scale-info = { version = "2.0.1", default-features = false, features = ["derive"] }1011evm-coder = { default-features = false, path = "../../crates/evm-coder" }12frame-benchmarking = { default-features = false, optional = true, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }13frame-support = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }14frame-system = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }15pallet-evm = { default-features = false, git = "https://github.com/uniquenetwork/unique-frontier", branch = "unique-polkadot-v0.9.37" }16sp-core = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }17sp-std = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }18up-data-structs = { default-features = false, path = "../../primitives/data-structs" }1920[features]21default = ["std"]22runtime-benchmarks = ['frame-benchmarking']23std = [24	"evm-coder/std",25	"frame-support/std",26	"frame-system/std",27	"pallet-evm/std",28	"sp-core/std",29	"sp-std/std",30	'frame-benchmarking/std',31]32try-runtime = ["frame-support/try-runtime"]