mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-30 16:21:02 +00:00
3b71c2a6e2
* One node two runtimes This enables the rococo-collator to run the normal and the contracts runtime. * Fix tests
18 lines
482 B
TOML
18 lines
482 B
TOML
[package]
|
|
name = "rococo-parachain-primitives"
|
|
version = "0.1.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
# Substrate dependencies
|
|
sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "rococo-branch" }
|
|
sp-core = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "rococo-branch" }
|
|
|
|
[features]
|
|
default = [ "std" ]
|
|
std = [
|
|
"sp-runtime/std",
|
|
"sp-core/std"
|
|
]
|