mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-01 03:07:56 +00:00
e183d8bd30
This ensures that the crate compiles for `no_std`. Besides this, there are some fixes to the crate code itself.
31 lines
1.1 KiB
TOML
31 lines
1.1 KiB
TOML
[package]
|
|
name = "cumulus-primitives"
|
|
version = "0.1.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
# Substrate dependencies
|
|
sp-inherents = { git = "https://github.com/paritytech/substrate", branch = "cumulus-branch", default-features = false }
|
|
sp-std = { git = "https://github.com/paritytech/substrate", branch = "cumulus-branch", default-features = false }
|
|
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "cumulus-branch", default-features = false }
|
|
|
|
# Polkadot dependencies
|
|
polkadot-parachain = { git = "https://github.com/paritytech/polkadot", branch = "cumulus-branch", default-features = false }
|
|
polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = "cumulus-branch", default-features = false }
|
|
|
|
# Other dependencies
|
|
codec = { package = "parity-scale-codec", version = "1.0.5", default-features = false, features = [ "derive" ] }
|
|
impl-trait-for-tuples = "0.1.3"
|
|
|
|
[features]
|
|
default = [ "std" ]
|
|
std = [
|
|
"sp-std/std",
|
|
"codec/std",
|
|
"polkadot-primitives/std",
|
|
"polkadot-parachain/std",
|
|
"sp-inherents/std",
|
|
"sp-runtime/std",
|
|
]
|