mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-30 04:41:03 +00:00
3ed6030110
This reworks the default values used by the RelayChainCli for stuff like the listen port etc. This also renames all the contracts related stuff to `cumulus-*` to support `.cargo/config` overrides.
30 lines
1.3 KiB
TOML
30 lines
1.3 KiB
TOML
[package]
|
|
name = "cumulus-pallet-contracts-rpc"
|
|
version = "0.8.0-rc3"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2018"
|
|
license = "Apache-2.0"
|
|
homepage = "https://substrate.dev"
|
|
repository = "https://github.com/paritytech/substrate/"
|
|
description = "Node-specific RPC methods for interaction with contracts."
|
|
|
|
[package.metadata.docs.rs]
|
|
targets = ["x86_64-unknown-linux-gnu"]
|
|
|
|
[dependencies]
|
|
codec = { package = "parity-scale-codec", version = "1.3.1" }
|
|
jsonrpc-core = "14.2.0"
|
|
jsonrpc-core-client = "14.2.0"
|
|
jsonrpc-derive = "14.2.1"
|
|
sp-blockchain = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "rococo-branch" }
|
|
sp-core = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "rococo-branch" }
|
|
sp-rpc = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "rococo-branch" }
|
|
serde = { version = "1.0.101", features = ["derive"] }
|
|
sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "rococo-branch" }
|
|
sp-api = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "rococo-branch" }
|
|
cumulus-pallet-contracts-primitives = { path = "../common" }
|
|
cumulus-pallet-contracts-rpc-runtime-api = { path = "./runtime-api" }
|
|
|
|
[dev-dependencies]
|
|
serde_json = "1.0.41"
|