mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 14:37:57 +00:00
acb872fbb0
* Remove chains. * Move relay clients. * Flatten generic. * Fix fmt.
53 lines
2.0 KiB
TOML
53 lines
2.0 KiB
TOML
[package]
|
|
name = "bp-millau"
|
|
description = "Primitives of Millau runtime."
|
|
version = "0.1.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2018"
|
|
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
|
|
|
|
[dependencies]
|
|
|
|
# Bridge Dependencies
|
|
|
|
bp-messages = { path = "../messages", default-features = false }
|
|
bp-runtime = { path = "../runtime", default-features = false }
|
|
fixed-hash = { version = "0.7.0", default-features = false }
|
|
hash256-std-hasher = { version = "0.15.2", default-features = false }
|
|
impl-codec = { version = "0.5.0", default-features = false }
|
|
impl-serde = { version = "0.3.1", optional = true }
|
|
parity-util-mem = { version = "0.9.0", default-features = false, features = ["primitive-types"] }
|
|
serde = { version = "1.0.101", optional = true, features = ["derive"] }
|
|
|
|
# Substrate Based Dependencies
|
|
|
|
frame-support = { git = "https://github.com/paritytech/substrate", branch = "master" , default-features = false }
|
|
frame-system = { git = "https://github.com/paritytech/substrate", branch = "master" , default-features = false }
|
|
sp-api = { git = "https://github.com/paritytech/substrate", branch = "master" , default-features = false }
|
|
sp-core = { 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 }
|
|
sp-std = { git = "https://github.com/paritytech/substrate", branch = "master" , default-features = false }
|
|
sp-trie = { git = "https://github.com/paritytech/substrate", branch = "master" , default-features = false }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = [
|
|
"bp-messages/std",
|
|
"bp-runtime/std",
|
|
"fixed-hash/std",
|
|
"frame-support/std",
|
|
"frame-system/std",
|
|
"hash256-std-hasher/std",
|
|
"impl-codec/std",
|
|
"impl-serde",
|
|
"parity-util-mem/std",
|
|
"serde",
|
|
"sp-api/std",
|
|
"sp-core/std",
|
|
"sp-io/std",
|
|
"sp-runtime/std",
|
|
"sp-std/std",
|
|
"sp-trie/std",
|
|
]
|