mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-31 19:11:02 +00:00
25 lines
861 B
TOML
25 lines
861 B
TOML
[package]
|
|
name = "polkadot-runtime"
|
|
version = "0.1.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
|
|
[lib]
|
|
crate-type = ["cdylib"]
|
|
|
|
[dependencies]
|
|
substrate-codec = { path = "../../codec", version = "0.1", default-features = false }
|
|
substrate-runtime-std = { path = "../../runtime-std", version = "0.1", default-features = false }
|
|
substrate-runtime-io = { path = "../../runtime-io", version = "0.1", default-features = false }
|
|
substrate-primitives = { path = "../../primitives", version = "0.1", default-features = false }
|
|
polkadot-primitives = { path = "../../polkadot-primitives", version = "0.1", default-features = false }
|
|
|
|
[features]
|
|
default = []
|
|
std = ["substrate-codec/std", "substrate-runtime-io/std", "substrate-runtime-std/std", "substrate-primitives/std", "polkadot-primitives/std"]
|
|
|
|
[profile.release]
|
|
panic = "abort"
|
|
|
|
[workspace]
|
|
members = []
|