mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-27 12:48:00 +00:00
dc92631180
* Move srml-system RPC out. * Fix tests for system-rpc module. * Contracts RPC moved. * Fix rpc test. * Clean up. * Update lockfile. * Bump runtime version. * Update srml/contracts/rpc/runtime-api/src/lib.rs Co-Authored-By: Bastian Köcher <bkchr@users.noreply.github.com> * Bump impl version.
21 lines
513 B
TOML
21 lines
513 B
TOML
[package]
|
|
name = "node-primitives"
|
|
version = "2.0.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
primitives = { package = "substrate-primitives", path = "../../core/primitives", default-features = false }
|
|
sr-primitives = { path = "../../core/sr-primitives", default-features = false }
|
|
|
|
[dev-dependencies]
|
|
substrate-serializer = { path = "../../core/serializer" }
|
|
pretty_assertions = "0.6.1"
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = [
|
|
"primitives/std",
|
|
"sr-primitives/std",
|
|
]
|