[package] name = "orml-tokens" description = "Fungible tokens module that implements `MultiCurrency` trait." repository = "https://github.com/open-web3-stack/open-runtime-module-library/tree/master/tokens" license = "Apache-2.0" version = "1.0.0" authors = ["Laminar Developers "] edition = "2021" [dependencies] parity-scale-codec = { version = "3.0.0", default-features = false, features = ["max-encoded-len"] } log = { workspace = true } scale-info = { workspace = true } serde = { workspace = true, optional = true } frame-support = { workspace = true } frame-system = { workspace = true } sp-arithmetic = { workspace = true } sp-runtime = { workspace = true } sp-std = { workspace = true } orml-traits = { path = "../traits", version = "1.0.0", default-features = false } [dev-dependencies] pallet-elections-phragmen = { workspace = true, features = ["std"] } pallet-treasury = { workspace = true, features = ["std"] } sp-core = { workspace = true, features = ["std"] } sp-io = { workspace = true, features = ["std"] } sp-staking = { workspace = true, features = ["std"] } [features] default = [ "std" ] std = [ "frame-support/std", "frame-system/std", "log/std", "orml-traits/std", "parity-scale-codec/std", "scale-info/std", "serde", "sp-arithmetic/std", "sp-runtime/std", "sp-std/std", ] 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", ]