[package] name = "pallet-safe-mode" version = "19.0.0" authors.workspace = true edition.workspace = true license = "Apache-2.0" homepage.workspace = true repository.workspace = true description = "FRAME safe-mode pallet" [lints] workspace = true [package.metadata.docs.rs] targets = ["x86_64-unknown-linux-gnu"] [dependencies] codec = { features = ["derive"], workspace = true } docify = { workspace = true } frame-benchmarking = { optional = true, workspace = true } frame-support.workspace = true frame-system.workspace = true scale-info = { features = ["derive"], workspace = true } sp-arithmetic.workspace = true sp-runtime.workspace = true pallet-balances = { optional = true, workspace = true } pallet-utility = { optional = true, workspace = true } pallet-proxy = { optional = true, workspace = true } [dev-dependencies] sp-core = { default-features = true, path = "../../primitives/core" } sp-io = { default-features = true, path = "../../primitives/io" } pallet-balances = { default-features = true, path = "../balances" } pallet-utility = { default-features = true, path = "../utility" } pallet-proxy = { default-features = true, path = "../proxy" } frame-support = { features = ["experimental"], default-features = true, path = "../support" } [features] default = ["std"] std = [ "codec/std", "frame-benchmarking/std", "frame-support/std", "frame-system/std", "pallet-balances?/std", "pallet-proxy?/std", "pallet-utility?/std", "scale-info/std", "sp-arithmetic/std", "sp-runtime/std", ] runtime-benchmarks = [ "frame-benchmarking/runtime-benchmarks", "frame-support/runtime-benchmarks", "frame-system/runtime-benchmarks", "pallet-balances/runtime-benchmarks", "pallet-proxy/runtime-benchmarks", "pallet-utility/runtime-benchmarks", "sp-runtime/runtime-benchmarks", ] try-runtime = [ "frame-support/try-runtime", "frame-system/try-runtime", "pallet-balances?/try-runtime", "pallet-proxy?/try-runtime", "pallet-utility?/try-runtime", "sp-runtime/try-runtime", ]