git.delta.rocks / unique-network / refs/commits / 24d3f67bfdff

difftreelog

source

pallets/configuration/Cargo.toml1.5 KiBsourcehistory
1[package]2edition = "2021"3name = "pallet-configuration"4version = "0.1.3"56[dependencies]7fp-evm = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.36" }8frame-benchmarking = { default-features = false, optional = true, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }9frame-support = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }10frame-system = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }11parity-scale-codec = { version = "3.2.2", features = ["derive"], default-features = false }12scale-info = { version = "2.0.1", default-features = false, features = ["derive"] }13smallvec = "1.6.1"14sp-arithmetic = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }15sp-core = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }16sp-std = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }17xcm = { default-features = false, git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.36" }1819[features]20default = ["std"]21runtime-benchmarks = ["frame-benchmarking"]22std = [23	"fp-evm/std",24	"frame-benchmarking/std",25	"frame-support/std",26	"frame-system/std",27	"parity-scale-codec/std",28	"sp-arithmetic/std",29	"sp-core/std",30	"sp-std/std",31]32try-runtime = ["frame-support/try-runtime"]