Cargo.toml 1006 B
Newer Older
[package]
name = "test-runtime-constants"
Lulu's avatar
Lulu committed
publish = false
version.workspace = true
authors.workspace = true
edition.workspace = true
Lulu's avatar
Lulu committed
license.workspace = true

frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
primitives = { package = "polkadot-primitives", path = "../../../primitives", default-features = false }
runtime-common = { package = "polkadot-runtime-common", path = "../../common", default-features = false }
sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" }
sp-weights = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" }
sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" }

[features]
default = ["std"]
std = [
	"sp-core/std",
	"sp-runtime/std",
	"sp-weights/std",
	"runtime-common/std",
	"primitives/std",
	"frame-support/std",