mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-31 14:31:02 +00:00
fdff205f7b
Bumps [scale-info](https://github.com/paritytech/scale-info) from 2.9.0 to 2.10.0. - [Release notes](https://github.com/paritytech/scale-info/releases) - [Changelog](https://github.com/paritytech/scale-info/blob/master/CHANGELOG.md) - [Commits](https://github.com/paritytech/scale-info/compare/v2.9.0...v2.10.0) --- updated-dependencies: - dependency-name: scale-info dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
63 lines
2.6 KiB
TOML
63 lines
2.6 KiB
TOML
[package]
|
|
name = "bp-millau"
|
|
description = "Primitives of Millau runtime."
|
|
version = "0.1.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2021"
|
|
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
|
|
|
|
[dependencies]
|
|
|
|
# TODO: Consume `fixed-hash` from crates.io when the following fix is published:
|
|
# https://github.com/paritytech/parity-common/commit/d3a9327124a66e52ca1114bb8640c02c18c134b8
|
|
# Expected in a version > 0.8.0
|
|
fixed-hash = { git = "https://github.com/paritytech/parity-common", branch = "master", default-features = false }
|
|
hash256-std-hasher = { version = "0.15.2", default-features = false }
|
|
impl-codec = { version = "0.6", default-features = false }
|
|
impl-serde = { version = "0.4.0", default-features = false }
|
|
parity-util-mem = { version = "0.12.0", default-features = false, features = ["primitive-types"] }
|
|
scale-info = { version = "2.10.0", default-features = false, features = ["derive"] }
|
|
serde = { version = "1.0", default-features = false, features = ["alloc", "derive"] }
|
|
|
|
# Bridge Dependencies
|
|
|
|
bp-beefy = { path = "../beefy", default-features = false }
|
|
bp-header-chain = { path = "../header-chain", default-features = false }
|
|
bp-messages = { path = "../messages", default-features = false }
|
|
bp-runtime = { path = "../runtime", default-features = false }
|
|
|
|
# Substrate Based Dependencies
|
|
|
|
frame-support = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master", default-features = false }
|
|
frame-system = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master", default-features = false }
|
|
sp-api = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master", default-features = false }
|
|
sp-core = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master", default-features = false }
|
|
sp-io = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master", default-features = false }
|
|
sp-runtime = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master", default-features = false }
|
|
sp-std = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master", default-features = false }
|
|
sp-trie = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master", default-features = false }
|
|
|
|
[features]
|
|
default = [ "std" ]
|
|
std = [
|
|
"bp-beefy/std",
|
|
"bp-header-chain/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/std",
|
|
"parity-util-mem/std",
|
|
"scale-info/std",
|
|
"serde/std",
|
|
"sp-api/std",
|
|
"sp-core/std",
|
|
"sp-io/std",
|
|
"sp-runtime/std",
|
|
"sp-std/std",
|
|
"sp-trie/std",
|
|
]
|