mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-28 03:58:04 +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
620 B
TOML
21 lines
620 B
TOML
[package]
|
|
name = "srml-contracts-rpc-runtime-api"
|
|
version = "2.0.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
client = { package = "substrate-client", path = "../../../../core/client", default-features = false }
|
|
codec = { package = "parity-scale-codec", version = "1.0.0", default-features = false, features = ["derive"] }
|
|
rstd = { package = "sr-std", path = "../../../../core/sr-std", default-features = false }
|
|
serde = { version = "1.0.101", optional = true, features = ["derive"] }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = [
|
|
"client/std",
|
|
"codec/std",
|
|
"rstd/std",
|
|
"serde",
|
|
]
|