[package] name = "cumulus-test-relay-sproof-builder" version = "0.1.0" authors = ["Parity Technologies "] edition = "2021" [dependencies] codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false, features = [ "derive" ] } # Substrate sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.40" } sp-state-machine = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.40" } sp-std = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.40" } # Polkadot polkadot-primitives = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "release-v0.9.40" } # Cumulus cumulus-primitives-core = { path = "../../primitives/core", default-features = false } [features] default = [ "std" ] std = [ "codec/std", "sp-runtime/std", "sp-state-machine/std", "sp-std/std", "cumulus-primitives-core/std", ]