Skip to content
Snippets Groups Projects
Cargo.toml 1.43 KiB
Newer Older
[package]
name = "orml-unknown-tokens"
description = "Unknown tokens module that implements `UnknownAsset` trait."
repository = "https://github.com/open-web3-stack/open-runtime-module-library/tree/master/unknown-tokens"
license = "Apache-2.0"
version = "0.4.1-dev"
authors = ["Acala Developers"]
edition = "2018"

[dependencies]
serde = { version = "1.0.124", optional = true }
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false }
Shaun Wang's avatar
Shaun Wang committed
sp-std = { git = "https://github.com/paritytech/substrate", branch = "statemint", default-features = false }
frame-support = { git = "https://github.com/paritytech/substrate", branch = "statemint", default-features = false }
frame-system = { git = "https://github.com/paritytech/substrate", branch = "statemint", default-features = false }
Shaun Wang's avatar
Shaun Wang committed
xcm = { git = "https://github.com/paritytech/polkadot", branch = "statemint", default-features = false }

orml-xcm-support = { path = "../xcm-support", default-features = false }

[dev-dependencies]
Shaun Wang's avatar
Shaun Wang committed
sp-io = { git = "https://github.com/paritytech/substrate", branch = "statemint" }
sp-core = { git = "https://github.com/paritytech/substrate", branch = "statemint" }
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "statemint" }

[features]
default = ["std"]
std = [
	"serde",
	"codec/std",
	"sp-std/std",
	"frame-support/std",
	"frame-system/std",
	"xcm/std",
	"orml-xcm-support/std",
]
wangjj9219's avatar
wangjj9219 committed
try-runtime = ["frame-support/try-runtime"]