[package] name = "pallet-revive-fixtures" publish = true version = "0.2.0" authors.workspace = true edition.workspace = true license.workspace = true description = "Fixtures for testing and benchmarking" [lints] workspace = true [dependencies] frame-system = { workspace = true, optional = true, default-features = true } sp-runtime = { workspace = true, optional = true, default-features = true } anyhow = { workspace = true } [build-dependencies] parity-wasm = { workspace = true } tempfile = { workspace = true } toml = { workspace = true } polkavm-linker = { version = "0.10.0" } anyhow = { workspace = true } [features] default = ["std"] # only if the feature is set we are building the test fixtures # this is because it requires a custom toolchain supporting polkavm # we will remove this once there is an upstream toolchain riscv = [] # only when std is enabled all fixtures are available std = [ "anyhow/std", "frame-system", "sp-runtime", ]