mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-07-14 10:55:42 +00:00
e89d0fca35
Lifting some more dependencies to the workspace. Just using the most-often updated ones for now. It can be reproduced locally. ```sh # First you can check if there would be semver incompatible bumps (looks good in this case): $ zepter transpose dependency lift-to-workspace --ignore-errors syn quote thiserror "regex:^serde.*" # Then apply the changes: $ zepter transpose dependency lift-to-workspace --version-resolver=highest syn quote thiserror "regex:^serde.*" --fix # And format the changes: $ taplo format --config .config/taplo.toml ``` --------- Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io>
58 lines
1.9 KiB
TOML
58 lines
1.9 KiB
TOML
[package]
|
|
name = "snowbridge-beacon-primitives"
|
|
description = "Snowbridge Beacon Primitives"
|
|
version = "0.0.0"
|
|
authors = ["Snowfork <contact@snowfork.com>"]
|
|
edition.workspace = true
|
|
repository.workspace = true
|
|
license = "Apache-2.0"
|
|
categories = ["cryptography::cryptocurrencies"]
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
serde = { optional = true, features = ["derive"], workspace = true, default-features = true }
|
|
hex = { version = "0.4", default-features = false }
|
|
codec = { package = "parity-scale-codec", version = "3.6.1", default-features = false }
|
|
scale-info = { version = "2.9.0", default-features = false, features = ["derive"] }
|
|
rlp = { version = "0.5", default-features = false }
|
|
|
|
frame-support = { path = "../../../../substrate/frame/support", default-features = false }
|
|
frame-system = { path = "../../../../substrate/frame/system", default-features = false }
|
|
sp-runtime = { path = "../../../../substrate/primitives/runtime", default-features = false }
|
|
sp-core = { path = "../../../../substrate/primitives/core", default-features = false }
|
|
sp-std = { path = "../../../../substrate/primitives/std", default-features = false }
|
|
sp-io = { path = "../../../../substrate/primitives/io", default-features = false }
|
|
|
|
ssz_rs = { version = "0.9.0", default-features = false }
|
|
ssz_rs_derive = { version = "0.9.0", default-features = false }
|
|
byte-slice-cast = { version = "1.2.1", default-features = false }
|
|
|
|
snowbridge-ethereum = { path = "../ethereum", default-features = false }
|
|
static_assertions = { version = "1.1.0" }
|
|
milagro-bls = { package = "snowbridge-milagro-bls", version = "1.5.4", default-features = false }
|
|
|
|
[dev-dependencies]
|
|
hex-literal = { version = "0.4.1" }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = [
|
|
"byte-slice-cast/std",
|
|
"codec/std",
|
|
"frame-support/std",
|
|
"frame-system/std",
|
|
"hex/std",
|
|
"milagro-bls/std",
|
|
"rlp/std",
|
|
"scale-info/std",
|
|
"serde",
|
|
"snowbridge-ethereum/std",
|
|
"sp-core/std",
|
|
"sp-io/std",
|
|
"sp-runtime/std",
|
|
"sp-std/std",
|
|
"ssz_rs/std",
|
|
]
|