1[package]2name = "pallet-contracts-rpc-runtime-api"3version = "3.0.0"4authors = ["Parity Technologies <admin@parity.io>"]5edition = "2018"6license = "Apache-2.0"7homepage = "https://substrate.dev"8repository = "https://github.com/paritytech/substrate/"9description = "Runtime API definition required by Contracts RPC extensions."10readme = "README.md"1112[package.metadata.docs.rs]13targets = ["x86_64-unknown-linux-gnu"]1415[dependencies]16codec = { package = "parity-scale-codec", version = "2", default-features = false, features = ["derive"] }171819pallet-contracts-primitives = { version = "3.0.0", default-features = false, git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.3' }20sp-api = { version = "3.0.0", default-features = false, git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.3' }21sp-runtime = { version = "3.0.0", default-features = false, git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.3' }22sp-std = { version = "3.0.0", default-features = false, git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.3' }2324[features]25default = ["std"]26std = [27 "sp-api/std",28 "codec/std",29 "sp-std/std",30 "sp-runtime/std",31 "pallet-contracts-primitives/std",32]