mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 16:57:58 +00:00
e7d8040af8
This updates parity-scale-codec{-derive} to prepare for a rustc release
that would otherwise break the derive implementation:
https://github.com/rust-lang/rust/pull/73084
46 lines
1.6 KiB
TOML
46 lines
1.6 KiB
TOML
[package]
|
|
name = "pallet-proxy"
|
|
version = "2.0.0-rc5"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2018"
|
|
license = "Apache-2.0"
|
|
homepage = "https://substrate.dev"
|
|
repository = "https://github.com/paritytech/substrate/"
|
|
description = "FRAME proxying pallet"
|
|
|
|
[package.metadata.docs.rs]
|
|
targets = ["x86_64-unknown-linux-gnu"]
|
|
|
|
[dependencies]
|
|
serde = { version = "1.0.101", optional = true }
|
|
codec = { package = "parity-scale-codec", version = "1.3.4", default-features = false }
|
|
frame-support = { version = "2.0.0-rc5", default-features = false, path = "../support" }
|
|
frame-system = { version = "2.0.0-rc5", default-features = false, path = "../system" }
|
|
sp-core = { version = "2.0.0-rc5", default-features = false, path = "../../primitives/core" }
|
|
sp-io = { version = "2.0.0-rc5", default-features = false, path = "../../primitives/io" }
|
|
sp-runtime = { version = "2.0.0-rc5", default-features = false, path = "../../primitives/runtime" }
|
|
sp-std = { version = "2.0.0-rc5", default-features = false, path = "../../primitives/std" }
|
|
|
|
frame-benchmarking = { version = "2.0.0-rc5", default-features = false, path = "../benchmarking", optional = true }
|
|
|
|
[dev-dependencies]
|
|
sp-core = { version = "2.0.0-rc5", path = "../../primitives/core" }
|
|
pallet-balances = { version = "2.0.0-rc5", path = "../balances" }
|
|
pallet-utility = { version = "2.0.0-rc5", path = "../utility" }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = [
|
|
"serde",
|
|
"codec/std",
|
|
"sp-runtime/std",
|
|
"frame-support/std",
|
|
"frame-system/std",
|
|
"sp-std/std",
|
|
"sp-io/std"
|
|
]
|
|
runtime-benchmarks = [
|
|
"frame-benchmarking",
|
|
"frame-support/runtime-benchmarks",
|
|
]
|