mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-17 23:01:01 +00:00
df133d6be3
* sr-arithmetic -> arithmetic * sr-sandbox -> sandbox * primitives/sr-staking-primitives -> primitives/staking * primitives/sr-version -> primitives/version * primitives/block-builder/runtime-api -> primitives/block-builder
33 lines
1.0 KiB
TOML
33 lines
1.0 KiB
TOML
[package]
|
|
name = "pallet-offences"
|
|
version = "1.0.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
balances = { package = "pallet-balances", path = "../balances", default-features = false }
|
|
codec = { package = "parity-scale-codec", version = "1.0.0", default-features = false, features = ["derive"] }
|
|
sp-std = { path = "../../primitives/std", default-features = false }
|
|
serde = { version = "1.0.101", optional = true }
|
|
sp-runtime = { path = "../../primitives/runtime", default-features = false }
|
|
sp-staking = { path = "../../primitives/staking", default-features = false }
|
|
support = { package = "frame-support", path = "../support", default-features = false }
|
|
system = { package = "frame-system", path = "../system", default-features = false }
|
|
|
|
[dev-dependencies]
|
|
sp-io = { path = "../../primitives/io" }
|
|
sp-core = { path = "../../primitives/core" }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = [
|
|
"balances/std",
|
|
"codec/std",
|
|
"sp-std/std",
|
|
"serde",
|
|
"sp-runtime/std",
|
|
"sp-staking/std",
|
|
"support/std",
|
|
"system/std",
|
|
]
|