[package] name = "ghost-sudo" version = "0.0.2" description = "Port of the sudo pallet because of dependencies issue" license.workspace = true authors.workspace = true edition.workspace = true homepage.workspace = true repository.workspace = true [dependencies] docify = "0.2.8" codec = { workspace = true, features = ["derive"] } frame-benchmarking = { workspace = true, optional = true } scale-info = { workspace = true, features = ["derive"] } frame-support = { workspace = true } frame-system = { workspace = true } sp-io = { workspace = true } sp-runtime = { workspace = true } sp-std = { workspace = true } [features] default = ["std"] std = [ "codec/std", "frame-benchmarking?/std", "frame-support/std", "frame-system/std", "scale-info/std", "sp-io/std", "sp-runtime/std", "sp-std/std", ] runtime-benchmarks = [ "frame-benchmarking/runtime-benchmarks", "frame-support/runtime-benchmarks", "frame-system/runtime-benchmarks", "sp-runtime/runtime-benchmarks", ] try-runtime = [ "frame-support/try-runtime", "frame-system/try-runtime", "sp-runtime/try-runtime", ]