mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 16:57:58 +00:00
9d23d2a25a
* bump crates to v2.0.0 * fix crate authors * bump node runtime spec_version * remove unused import for no-std
29 lines
417 B
TOML
29 lines
417 B
TOML
[package]
|
|
name = "node-runtime-wasm"
|
|
version = "2.0.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2018"
|
|
|
|
[lib]
|
|
name = "node_runtime"
|
|
crate-type = ["cdylib"]
|
|
|
|
[dependencies]
|
|
node-runtime = { path = "..", default-features = false }
|
|
|
|
[features]
|
|
default = ["core"]
|
|
core = [
|
|
"node-runtime/core",
|
|
]
|
|
std = [
|
|
"node-runtime/std",
|
|
]
|
|
|
|
[profile.release]
|
|
panic = "abort"
|
|
lto = true
|
|
|
|
[workspace]
|
|
members = []
|