mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-30 09:21:04 +00:00
c0b065837e
* Make `collator::Network` require `Send + Sync` to make it work * Update packages * Update to latest Substrate * Make it compile and make tests work * Use `polkadot-master` * Fix CI * Remove `build.sh` from readmes * Delete old stuff * Bring one back
24 lines
836 B
TOML
24 lines
836 B
TOML
[package]
|
|
name = "polkadot-parachain"
|
|
version = "0.1.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
description = "Types and utilities for creating and working with parachains"
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
codec = { package = "parity-codec", version = "4.1", default-features = false, features = [ "derive" ] }
|
|
wasmi = { version = "0.4.3", optional = true }
|
|
derive_more = { version = "0.14", optional = true }
|
|
serde = { version = "1.0", default-features = false, features = [ "derive" ] }
|
|
|
|
rstd = { package = "sr-std", git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false }
|
|
|
|
[dev-dependencies]
|
|
tiny-keccak = "1.4"
|
|
adder = { path = "../test-parachains/adder" }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
wasm-api = []
|
|
std = [ "codec/std", "wasmi", "derive_more", "serde/std", "rstd/std" ]
|