[package] name = "pallet-asset-conversion" version = "4.0.0-dev" authors = ["Parity Technologies "] edition = "2021" license = "Apache-2.0" homepage = "https://substrate.io" repository = "https://github.com/paritytech/substrate/" description = "FRAME asset conversion pallet" readme = "README.md" [package.metadata.docs.rs] targets = ["x86_64-unknown-linux-gnu"] [dependencies] codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false, features = ["derive"] } frame-support = { version = "4.0.0-dev", default-features = false, path = "../support" } frame-system = { version = "4.0.0-dev", default-features = false, path = "../system" } frame-benchmarking = { version = "4.0.0-dev", default-features = false, path = "../benchmarking", optional = true } scale-info = { version = "2.0.0", default-features = false, features = ["derive"] } sp-api = { version = "4.0.0-dev", default-features = false, path = "../../primitives/api" } sp-io = { version = "8.0.0", default-features = false, path = "../../primitives/io" } sp-std = { version = "6.0.0", default-features = false, path = "../../primitives/std" } sp-runtime = { version = "8.0.0", default-features = false, path = "../../primitives/runtime" } sp-arithmetic = { version = "7.0.0", default-features = false, path = "../../primitives/arithmetic" } [dev-dependencies] pallet-balances = { version = "4.0.0-dev", path = "../balances" } pallet-assets = { version = "4.0.0-dev", path = "../assets" } primitive-types = { version = "0.12.0", default-features = false, features = ["codec", "scale-info", "num-traits"] } sp-std = { version = "6.0.0", path = "../../primitives/std" } sp-core = { version = "8.0.0", path = "../../primitives/core" } sp-io = { version = "8.0.0", path = "../../primitives/io" } [features] default = ["std"] std = [ "codec/std", "frame-benchmarking?/std", "frame-support/std", "frame-system/std", "scale-info/std", "sp-std/std", "sp-runtime/std", "sp-arithmetic/std" ] runtime-benchmarks = [ "frame-benchmarking/runtime-benchmarks", "frame-system/runtime-benchmarks", "sp-runtime/runtime-benchmarks", ] try-runtime = ["frame-support/try-runtime"]