[package] name = "sum-storage" version = "2.0.0-alpha.6" authors = ["Joshy Orndorff"] edition = "2018" description = "A pallet with two storage items whose sum is exposed via a custom runtime API" license = "GPL-3.0-or-later" homepage = "https://github.com/substrate-developer-hub/recipes" repository = "https://github.com/substrate-developer-hub/recipes" documentation = "https://github.com/substrate-developer-hub/recipes" #readme = "" [package.metadata.substrate] categories = [ "Runtime API", "tutorial", "recipe", ] # icon = "path/to/icon.png" compatibility_version = "2.0.0-alpha.6" [dependencies] codec = { package = "parity-scale-codec", version = "1.3.0", default-features = false, features = ["derive"] } sp-std = { version = '2.0.0-alpha.6', default_features = false} sp-runtime = { version = '2.0.0-alpha.6', default_features = false} frame-support = { version = '2.0.0-alpha.6', default_features = false} frame-system = { version = '2.0.0-alpha.6', default_features = false} [dev-dependencies] sp-io = { version = '2.0.0-alpha.6', default_features = false} sp-core = { version = '2.0.0-alpha.6', default_features = false} [features] default = ["std"] std = [ "codec/std", "sp-std/std", "sp-runtime/std", "frame-support/std", "frame-system/std", ]