edge_bridge/Cargo.toml

45 lines
2.1 KiB
TOML
Raw Normal View History

2018-11-21 10:22:53 -08:00
[package]
2018-12-03 13:50:33 -08:00
name = "edge_bridge"
2018-11-21 10:22:53 -08:00
version = "0.1.0"
authors = ["Drew Stone <drew@commonwealth.im>"]
2018-11-21 10:22:53 -08:00
[dependencies]
hex-literal = "0.1.0"
serde = { version = "1.0", default-features = false }
serde_derive = { version = "1.0", optional = true }
safe-mix = { version = "1.0", default-features = false}
parity-codec = { version = "2.1", default-features = false }
parity-codec-derive = { version = "2.1", default-features = false }
2018-12-18 07:33:08 -08:00
substrate-keyring = { git = "https://github.com/paritytech/substrate", branch = "v0.9", optional = true }
substrate-primitives = { git = "https://github.com/paritytech/substrate", branch = "v0.9", default-features = false }
sr-std = { git = "https://github.com/paritytech/substrate", branch = "v0.9", default-features = false }
sr-io = { git = "https://github.com/paritytech/substrate", branch = "v0.9", default-features = false }
sr-primitives = { git = "https://github.com/paritytech/substrate", branch = "v0.9", default-features = false }
srml-support = { git = "https://github.com/paritytech/substrate", branch = "v0.9", default-features = false }
srml-system = { git = "https://github.com/paritytech/substrate", branch = "v0.9", default-features = false }
srml-balances = { git = "https://github.com/paritytech/substrate", branch = "v0.9", default-features = false }
srml-consensus = { git = "https://github.com/paritytech/substrate", branch = "v0.9", default-features = false }
srml-session = { git = "https://github.com/paritytech/substrate", branch = "v0.9", default-features = false }
srml-timestamp = { git = "https://github.com/paritytech/substrate", branch = "v0.9", default-features = false }
srml-democracy = { git = "https://github.com/paritytech/substrate", branch = "v0.9", default-features = false }
2018-11-21 10:22:53 -08:00
[features]
default = ["std"]
std = [
"serde/std",
"serde_derive",
"safe-mix/std",
"parity-codec/std",
"parity-codec-derive/std",
"substrate-primitives/std",
"sr-std/std",
"sr-io/std",
"srml-support/std",
"sr-primitives/std",
"srml-system/std",
"srml-balances/std",
2018-11-28 11:32:31 -08:00
"srml-consensus/std",
"srml-session/std",
2018-11-28 11:32:31 -08:00
"srml-timestamp/std",
2018-11-21 10:22:53 -08:00
"srml-democracy/std",
]