[package] name = "pallet-balances" version = "2.0.0-alpha.1" authors = ["Parity Technologies "] edition = "2018" license = "GPL-3.0" homepage = "https://substrate.dev" repository = "https://github.com/paritytech/substrate/" [dependencies] serde = { version = "1.0.101", optional = true } codec = { package = "parity-scale-codec", version = "1.0.0", default-features = false, features = ["derive"] } sp-std = { version = "2.0.0-alpha.1", default-features = false, path = "../../primitives/std" } sp-io = { version = "2.0.0-alpha.1", default-features = false, path = "../../primitives/io" } sp-runtime = { version = "2.0.0-alpha.1", default-features = false, path = "../../primitives/runtime" } frame-benchmarking = { version = "2.0.0-alpha.1", default-features = false, path = "../benchmarking" } frame-support = { version = "2.0.0-alpha.1", default-features = false, path = "../support" } frame-system = { version = "2.0.0-alpha.1", default-features = false, path = "../system" } [dev-dependencies] sp-core = { version = "2.0.0-alpha.1", path = "../../primitives/core" } pallet-transaction-payment = { version = "2.0.0-alpha.1", path = "../transaction-payment" } [features] default = ["std"] std = [ "serde", "codec/std", "sp-std/std", "sp-io/std", "sp-runtime/std", "frame-benchmarking/std", "frame-support/std", "frame-system/std", ]