mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 00:37:57 +00:00
8e95a3e1aa
Working towards migrating the `parity-bridges-common` repo inside `polkadot-sdk`. This PR upgrades some dependencies in order to align them with the versions used in `parity-bridges-common` Related to https://github.com/paritytech/parity-bridges-common/issues/2538
32 lines
868 B
TOML
32 lines
868 B
TOML
[package]
|
|
name = "pallet-contracts-uapi"
|
|
version = "5.0.0"
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license = "Apache-2.0"
|
|
homepage = "https://substrate.io"
|
|
repository.workspace = true
|
|
description = "Exposes all the host functions that a contract can import."
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
paste = { version = "1.0", default-features = false }
|
|
bitflags = "1.0"
|
|
scale-info = { version = "2.11.1", default-features = false, features = ["derive"], optional = true }
|
|
scale = { package = "parity-scale-codec", version = "3.6.1", default-features = false, features = [
|
|
"derive",
|
|
"max-encoded-len",
|
|
], optional = true }
|
|
|
|
[target.'cfg(target_arch = "riscv32")'.dependencies]
|
|
polkavm-derive = { workspace = true }
|
|
|
|
[package.metadata.docs.rs]
|
|
default-target = ["wasm32-unknown-unknown"]
|
|
|
|
[features]
|
|
default = ["scale"]
|
|
scale = ["dep:scale", "scale-info"]
|