mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-07-13 16:15:49 +00:00
2783b44207
* /paint to /palette * rename paint to palette * rename the modules in palette to be pallets * update Structure.adoc * bump impl * fix CI directory * Update docs/Structure.adoc Co-Authored-By: Benjamin Kampmann <ben@gnunicorn.org>
40 lines
1.6 KiB
TOML
40 lines
1.6 KiB
TOML
[package]
|
|
name = "pallet-im-online"
|
|
version = "0.1.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
app-crypto = { package = "substrate-application-crypto", path = "../../primitives/application-crypto", default-features = false }
|
|
authorship = { package = "pallet-authorship", path = "../authorship", default-features = false }
|
|
codec = { package = "parity-scale-codec", version = "1.0.0", default-features = false, features = ["derive"] }
|
|
primitives = { package="substrate-primitives", path = "../../primitives/core", default-features = false }
|
|
rstd = { package = "sr-std", path = "../../primitives/sr-std", default-features = false }
|
|
serde = { version = "1.0.101", optional = true }
|
|
session = { package = "pallet-session", path = "../session", default-features = false }
|
|
runtime-io = { package = "sr-io", path = "../../primitives/sr-io", default-features = false }
|
|
sr-primitives = { path = "../../primitives/sr-primitives", default-features = false }
|
|
sr-staking-primitives = { path = "../../primitives/sr-staking-primitives", default-features = false }
|
|
support = { package = "palette-support", path = "../support", default-features = false }
|
|
system = { package = "palette-system", path = "../system", default-features = false }
|
|
|
|
[dev-dependencies]
|
|
offchain = { package = "substrate-offchain", path = "../../client/offchain" }
|
|
|
|
[features]
|
|
default = ["std", "session/historical"]
|
|
std = [
|
|
"app-crypto/std",
|
|
"authorship/std",
|
|
"codec/std",
|
|
"primitives/std",
|
|
"rstd/std",
|
|
"serde",
|
|
"session/std",
|
|
"runtime-io/std",
|
|
"sr-primitives/std",
|
|
"sr-staking-primitives/std",
|
|
"support/std",
|
|
"system/std",
|
|
]
|