mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-07-21 16:45:41 +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>
57 lines
1.9 KiB
TOML
57 lines
1.9 KiB
TOML
[package]
|
|
name = "snowbridge-ethereum"
|
|
description = "Snowbridge Ethereum"
|
|
version = "0.1.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 }
|
|
serde-big-array = { optional = true, features = ["const-generics"], workspace = true }
|
|
codec = { package = "parity-scale-codec", version = "3.6.1", default-features = false, features = ["derive"] }
|
|
scale-info = { version = "2.9.0", default-features = false, features = ["derive"] }
|
|
ethbloom = { version = "0.13.0", default-features = false }
|
|
ethereum-types = { version = "0.14.1", default-features = false, features = ["codec", "rlp", "serialize"] }
|
|
hex = { package = "rustc-hex", version = "2.1.0", default-features = false }
|
|
hex-literal = { version = "0.4.1", default-features = false }
|
|
parity-bytes = { version = "0.1.2", default-features = false }
|
|
rlp = { version = "0.5.2", default-features = false }
|
|
|
|
sp-io = { path = "../../../../substrate/primitives/io", default-features = false }
|
|
sp-std = { path = "../../../../substrate/primitives/std", default-features = false }
|
|
sp-core = { path = "../../../../substrate/primitives/core", default-features = false }
|
|
sp-runtime = { path = "../../../../substrate/primitives/runtime", default-features = false }
|
|
|
|
ethabi = { package = "ethabi-decode", version = "1.0.0", default-features = false }
|
|
|
|
[dev-dependencies]
|
|
wasm-bindgen-test = "0.3.19"
|
|
rand = "0.8.5"
|
|
serde_json = { workspace = true, default-features = true }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
expensive_tests = []
|
|
std = [
|
|
"codec/std",
|
|
"ethabi/std",
|
|
"ethbloom/std",
|
|
"ethereum-types/std",
|
|
"hex/std",
|
|
"parity-bytes/std",
|
|
"rlp/std",
|
|
"scale-info/std",
|
|
"serde",
|
|
"serde-big-array",
|
|
"sp-core/std",
|
|
"sp-io/std",
|
|
"sp-runtime/std",
|
|
"sp-std/std",
|
|
]
|