[package] name = "pallet-assets" version = "2.0.0-rc3" authors = ["Parity Technologies "] edition = "2018" license = "Apache-2.0" homepage = "https://substrate.dev" repository = "https://github.com/paritytech/substrate/" description = "FRAME asset management pallet" [package.metadata.docs.rs] targets = ["x86_64-unknown-linux-gnu"] [dependencies] serde = { version = "1.0.101", optional = true } codec = { package = "parity-scale-codec", version = "1.3.0", default-features = false } # Needed for various traits. In our case, `OnFinalize`. sp-runtime = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/runtime" } # Needed for type-safe access to storage DB. frame-support = { version = "2.0.0-rc3", default-features = false, path = "../support" } # `system` module provides us with all sorts of useful stuff and macros depend on it being around. frame-system = { version = "2.0.0-rc3", default-features = false, path = "../system" } [dev-dependencies] sp-core = { version = "2.0.0-rc3", path = "../../primitives/core" } sp-std = { version = "2.0.0-rc3", path = "../../primitives/std" } sp-io = { version = "2.0.0-rc3", path = "../../primitives/io" } [features] default = ["std"] std = [ "serde", "codec/std", "sp-runtime/std", "frame-support/std", "frame-system/std", ]