Skip to content
Snippets Groups Projects
Cargo.toml 1.16 KiB
Newer Older
Shaun Wang's avatar
Shaun Wang committed
[package]
name = "orml-xcm-support"
description = "Supporting module for XCM integration."
Shaun Wang's avatar
Shaun Wang committed
repository = "https://github.com/open-web3-stack/open-runtime-module-library/tree/master/xcm-support"
license = "Apache-2.0"
version = "0.4.1-dev"
authors = ["Acala Developers"]
edition = "2018"

[dependencies]
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 }
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "statemint", default-features = false }
Shaun Wang's avatar
Shaun Wang committed
frame-support = { 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 }
xcm-executor = { git = "https://github.com/paritytech/polkadot", branch = "statemint", default-features = false }
Shaun Wang's avatar
Shaun Wang committed

orml-traits = { path = "../traits", version = "0.4.1-dev", default-features = false }

[features]
default = ["std"]
std = [
	"sp-std/std",
	"sp-runtime/std",
	"frame-support/std",
	"xcm/std",
	"xcm-executor/std",
	"orml-traits/std",
]