mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 19:17:58 +00:00
9c173724fa
The old `trybuild` version didn't normalized cargo registry paths, but this is now done :)
48 lines
1.9 KiB
TOML
48 lines
1.9 KiB
TOML
[package]
|
|
name = "frame-support-test"
|
|
version = "3.0.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2018"
|
|
license = "Apache-2.0"
|
|
publish = false
|
|
homepage = "https://substrate.dev"
|
|
repository = "https://github.com/paritytech/substrate/"
|
|
|
|
[package.metadata.docs.rs]
|
|
targets = ["x86_64-unknown-linux-gnu"]
|
|
|
|
[dependencies]
|
|
serde = { version = "1.0.126", default-features = false, features = ["derive"] }
|
|
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = ["derive"] }
|
|
sp-io = { version = "4.0.0-dev", path = "../../../primitives/io", default-features = false }
|
|
sp-state-machine = { version = "0.10.0-dev", optional = true, path = "../../../primitives/state-machine" }
|
|
frame-support = { version = "4.0.0-dev", default-features = false, path = "../" }
|
|
sp-runtime = { version = "4.0.0-dev", default-features = false, path = "../../../primitives/runtime" }
|
|
sp-core = { version = "4.0.0-dev", default-features = false, path = "../../../primitives/core" }
|
|
sp-std = { version = "4.0.0-dev", default-features = false, path = "../../../primitives/std" }
|
|
trybuild = "1.0.43"
|
|
pretty_assertions = "0.6.1"
|
|
rustversion = "1.0.0"
|
|
frame-metadata = { version = "14.0.0-dev", default-features = false, path = "../../metadata" }
|
|
frame-system = { version = "4.0.0-dev", default-features = false, path = "../../system" }
|
|
# The "std" feature for this pallet is never activated on purpose, in order to test construct_runtime error message
|
|
test-pallet = { package = "frame-support-test-pallet", default-features = false, path = "pallet" }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = [
|
|
"serde/std",
|
|
"codec/std",
|
|
"sp-io/std",
|
|
"frame-support/std",
|
|
"frame-system/std",
|
|
"sp-core/std",
|
|
"sp-std/std",
|
|
"sp-runtime/std",
|
|
"sp-state-machine",
|
|
]
|
|
try-runtime = ["frame-support/try-runtime"]
|
|
# WARNING: CI only execute pallet test with this feature,
|
|
# if the feature intended to be used outside, CI and this message need to be updated.
|
|
conditional-storage = []
|