mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 13:27:57 +00:00
70 lines
2.8 KiB
TOML
70 lines
2.8 KiB
TOML
[package]
|
|
name = "frame-support-test"
|
|
version = "3.0.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2021"
|
|
license = "Apache-2.0"
|
|
publish = false
|
|
homepage = "https://substrate.io"
|
|
repository = "https://github.com/paritytech/substrate/"
|
|
|
|
[package.metadata.docs.rs]
|
|
targets = ["x86_64-unknown-linux-gnu"]
|
|
|
|
[dependencies]
|
|
static_assertions = "1.1.0"
|
|
serde = { version = "1.0.163", default-features = false, features = ["derive"] }
|
|
codec = { package = "parity-scale-codec", version = "3.6.1", default-features = false, features = ["derive"] }
|
|
scale-info = { version = "2.5.0", default-features = false, features = ["derive"] }
|
|
sp-api = { version = "4.0.0-dev", default-features = false, path = "../../../primitives/api" }
|
|
sp-arithmetic = { version = "16.0.0", default-features = false, path = "../../../primitives/arithmetic" }
|
|
sp-io = { version = "23.0.0", path = "../../../primitives/io", default-features = false }
|
|
sp-state-machine = { version = "0.28.0", optional = true, path = "../../../primitives/state-machine" }
|
|
frame-support = { version = "4.0.0-dev", default-features = false, path = "../" }
|
|
frame-benchmarking = { version = "4.0.0-dev", default-features = false, path = "../../benchmarking" }
|
|
sp-runtime = { version = "24.0.0", default-features = false, path = "../../../primitives/runtime" }
|
|
sp-core = { version = "21.0.0", default-features = false, path = "../../../primitives/core" }
|
|
sp-std = { version = "8.0.0", default-features = false, path = "../../../primitives/std" }
|
|
sp-version = { version = "22.0.0", default-features = false, path = "../../../primitives/version" }
|
|
trybuild = { version = "1.0.74", features = [ "diff" ] }
|
|
pretty_assertions = "1.3.0"
|
|
rustversion = "1.0.6"
|
|
frame-system = { version = "4.0.0-dev", default-features = false, path = "../../system" }
|
|
frame-executive = { version = "4.0.0-dev", default-features = false, path = "../../executive" }
|
|
# 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 = [
|
|
"codec/std",
|
|
"frame-benchmarking/std",
|
|
"frame-executive/std",
|
|
"frame-support/std",
|
|
"frame-system/std",
|
|
"scale-info/std",
|
|
"serde/std",
|
|
"sp-api/std",
|
|
"sp-arithmetic/std",
|
|
"sp-core/std",
|
|
"sp-io/std",
|
|
"sp-runtime/std",
|
|
"sp-state-machine",
|
|
"sp-std/std",
|
|
"sp-version/std",
|
|
"test-pallet/std",
|
|
]
|
|
try-runtime = [
|
|
"frame-support/try-runtime",
|
|
"frame-system/try-runtime",
|
|
"frame-executive/try-runtime",
|
|
]
|
|
# WARNING:
|
|
# Only CI runs with this feature enabled. This feature is for testing stuff related to the FRAME macros
|
|
# in conjunction with rust features.
|
|
frame-feature-testing = []
|
|
frame-feature-testing-2 = []
|
|
# Disable ui tests
|
|
disable-ui-tests = []
|
|
no-metadata-docs = ["frame-support/no-metadata-docs"]
|