Cargo.toml 1.25 KB
Newer Older
Shawn Tabrizi's avatar
Shawn Tabrizi committed
1
2
3
4
5
6
7
8
[package]
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
name = "xcm-builder"
description = "Tools & types for building with XCM and its executor."
version = "0.8.22"

[dependencies]
thiolliere's avatar
thiolliere committed
9
parity-scale-codec = { version = "1.3.6", default-features = false, features = ["derive"] }
Shawn Tabrizi's avatar
Shawn Tabrizi committed
10
11
xcm = { path = "..", default-features = false }
xcm-executor = { path = "../xcm-executor", default-features = false }
12
13
14
15
16
sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
sp-arithmetic = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
sp-io = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
Shawn Tabrizi's avatar
Shawn Tabrizi committed
17
18
19
20
21
22
23

# Polkadot dependencies
polkadot-parachain = { path = "../../parachain", default-features = false }

[features]
default = ["std"]
std = [
24
	"parity-scale-codec/std",
Shawn Tabrizi's avatar
Shawn Tabrizi committed
25
26
27
28
29
30
31
32
33
	"xcm/std",
	"xcm-executor/std",
	"sp-std/std",
	"sp-arithmetic/std",
	"sp-io/std",
	"sp-runtime/std",
	"frame-support/std",
	"polkadot-parachain/std",
]