mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-07-08 19:27:23 +00:00
29ee4e8f3a
* Best effort to bring up to date. * Fix the executor stuff * Update verisons. * Finish fixing * Final fixes and warnings. * add some docs and bump Wasm versions * Fix tests * Fix final test
33 lines
1.3 KiB
TOML
33 lines
1.3 KiB
TOML
[package]
|
|
name = "polkadot-primitives"
|
|
version = "0.1.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
serde = { version = "1.0", optional = true, features = ["derive"] }
|
|
parity-codec = { version = "4.1", default-features = false }
|
|
primitives = { package = "substrate-primitives", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" }
|
|
substrate-client = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" }
|
|
sr-version = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" }
|
|
rstd = { package = "sr-std", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" }
|
|
runtime_primitives = { package = "sr-primitives", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" }
|
|
polkadot-parachain = { path = "../parachain", default-features = false }
|
|
|
|
[dev-dependencies]
|
|
substrate-serializer = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" }
|
|
pretty_assertions = "0.5.1"
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = [
|
|
"parity-codec/std",
|
|
"primitives/std",
|
|
"substrate-client/std",
|
|
"rstd/std",
|
|
"sr-version/std",
|
|
"runtime_primitives/std",
|
|
"serde",
|
|
"polkadot-parachain/std",
|
|
]
|