Skip to content
Snippets Groups Projects
Cargo.toml 1.77 KiB
Newer Older
Shaopeng Wang's avatar
Shaopeng Wang committed
[package]
name = "orml-currencies"
description = "Provide `MultiCurrency` implementation using `pallet-balances` and `orml-tokens` module."
repository = "https://github.com/open-web3-stack/open-runtime-module-library/tree/master/currencies"
Xiliang Chen's avatar
Xiliang Chen committed
license = "Apache-2.0"
Bryan Chen's avatar
Bryan Chen committed
version = "0.4.1-dev"
Shaopeng Wang's avatar
Shaopeng Wang committed
authors = ["Laminar Developers <hello@laminar.one>"]
edition = "2018"

[dependencies]
serde = { version = "1.0.124", optional = true }
wangjj9219's avatar
wangjj9219 committed
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false }
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1", default-features = false }
sp-io = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1", default-features = false }
sp-std = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1", default-features = false }
frame-support = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1", default-features = false }
frame-system = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1", default-features = false }
Bryan Chen's avatar
Bryan Chen committed
orml-traits = { path = "../traits", version = "0.4.1-dev", default-features = false }
orml-utilities = { path = "../utilities", version = "0.4.1-dev", default-features = false }
Shaopeng Wang's avatar
Shaopeng Wang committed

[dev-dependencies]
sp-core = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1" }
pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1" }
Bryan Chen's avatar
Bryan Chen committed
orml_tokens = { package = "orml-tokens", path = "../tokens", version = "0.4.1-dev" }
Shaopeng Wang's avatar
Shaopeng Wang committed
[features]
default = ["std"]
std = [
	"serde",
	"codec/std",
Xiliang Chen's avatar
Xiliang Chen committed
	"sp-runtime/std",
Shaopeng Wang's avatar
Shaopeng Wang committed
	"sp-std/std",
	"sp-io/std",
Xiliang Chen's avatar
Xiliang Chen committed
	"frame-support/std",
	"frame-system/std",
	"orml-traits/std",
zjb0807's avatar
zjb0807 committed
	"orml-utilities/std",
wangjj9219's avatar
wangjj9219 committed
try-runtime = ["frame-support/try-runtime"]