Files
pezkuwi-subxt/substrate/frame/contracts/rpc/runtime-api/Cargo.toml
T
Alexander Theißen 18000a9ae8 Update dependencies of pallet_contracts (#8637)
* Update parity-wasm

* Cleanup Cargo.toml files

- Sort dependencies
- Remove minor and fix version where they are not necessary

* Update pretty_assertions

* Update rand
2021-04-19 10:47:46 +00:00

33 lines
1.1 KiB
TOML

[package]
name = "pallet-contracts-rpc-runtime-api"
version = "3.0.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "Apache-2.0"
homepage = "https://substrate.dev"
repository = "https://github.com/paritytech/substrate/"
description = "Runtime API definition required by Contracts RPC extensions."
readme = "README.md"
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
codec = { package = "parity-scale-codec", version = "2", default-features = false, features = ["derive"] }
# Substrate Dependencies
pallet-contracts-primitives = { version = "3.0.0", default-features = false, path = "../../common" }
sp-api = { version = "3.0.0", default-features = false, path = "../../../../primitives/api" }
sp-runtime = { version = "3.0.0", default-features = false, path = "../../../../primitives/runtime" }
sp-std = { version = "3.0.0", default-features = false, path = "../../../../primitives/std" }
[features]
default = ["std"]
std = [
"sp-api/std",
"codec/std",
"sp-std/std",
"sp-runtime/std",
"pallet-contracts-primitives/std",
]