mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-30 22:11:02 +00:00
c4424e5b73
* auto relay exchange transactions * docker + auto-relay-tx * clippy * jsonrpsee in Cargo.lock ??? * fix tests compilation * Show sccache * mute clippy * move * Update relays/ethereum/src/exchange.rs Co-authored-by: Hernando Castano <HCastano@users.noreply.github.com> * finish comment * (bool, String) -> StringifiedMaybeConnectionError * Update deployments/rialto/docker-compose.yml Co-authored-by: Hernando Castano <HCastano@users.noreply.github.com> Co-authored-by: Denis S. Soldatov aka General-Beck <general.beck@gmail.com> Co-authored-by: Hernando Castano <HCastano@users.noreply.github.com>
82 lines
2.1 KiB
TOML
82 lines
2.1 KiB
TOML
[package]
|
|
name = "ethereum-poa-relay"
|
|
version = "0.1.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2018"
|
|
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
|
|
|
|
[dependencies]
|
|
ansi_term = "0.12"
|
|
async-std = "=1.5.0"
|
|
async-stream = "0.2.0"
|
|
async-trait = "0.1.36"
|
|
backoff = "0.2"
|
|
clap = { version = "2.33.1", features = ["yaml"] }
|
|
codec = { package = "parity-scale-codec", version = "1.3.1" }
|
|
env_logger = "0.7.0"
|
|
ethabi = "12.0"
|
|
ethabi-contract = "11.0"
|
|
ethabi-derive = "12.0"
|
|
ethereum-tx-sign = "3.0"
|
|
futures = "0.3.5"
|
|
hex = "0.4"
|
|
linked-hash-map = "0.5.3"
|
|
log = "0.4.11"
|
|
num-traits = "0.2"
|
|
parity-crypto = { version = "0.6", features = ["publickey"] }
|
|
parking_lot = "0.11.0"
|
|
rustc-hex = "2.0.1"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0.57"
|
|
sysinfo = "0.15"
|
|
sp-currency-exchange = { path = "../../primitives/currency-exchange" }
|
|
sp-bridge-eth-poa = { path = "../../primitives/ethereum-poa" }
|
|
time = "0.2"
|
|
web3 = "0.13"
|
|
|
|
[dependencies.jsonrpsee]
|
|
git = "https://github.com/svyatonik/jsonrpsee.git"
|
|
branch = "shared-client-in-rpc-api"
|
|
default-features = false
|
|
features = ["http"]
|
|
|
|
# Substrate Based Dependencies
|
|
[dependencies.frame-system]
|
|
version = "2.0.0-rc4"
|
|
tag = 'v2.0.0-rc4'
|
|
git = "https://github.com/paritytech/substrate/"
|
|
|
|
[dependencies.pallet-transaction-payment]
|
|
version = "2.0.0-rc4"
|
|
tag = 'v2.0.0-rc4'
|
|
git = "https://github.com/paritytech/substrate.git"
|
|
|
|
[dependencies.node-primitives]
|
|
version = "2.0.0-rc4"
|
|
tag = 'v2.0.0-rc4'
|
|
git = "https://github.com/paritytech/substrate.git"
|
|
|
|
[dependencies.sp-core]
|
|
version = "2.0.0-rc4"
|
|
tag = 'v2.0.0-rc4'
|
|
git = "https://github.com/paritytech/substrate.git"
|
|
|
|
[dependencies.sp-keyring]
|
|
version = "2.0.0-rc4"
|
|
tag = 'v2.0.0-rc4'
|
|
git = "https://github.com/paritytech/substrate.git"
|
|
|
|
[dependencies.sp-runtime]
|
|
version = "2.0.0-rc4"
|
|
tag = 'v2.0.0-rc4'
|
|
git = "https://github.com/paritytech/substrate.git"
|
|
|
|
[dependencies.substrate-prometheus-endpoint]
|
|
version = "0.8.0-rc4"
|
|
tag = 'v2.0.0-rc4'
|
|
git = "https://github.com/paritytech/substrate.git"
|
|
|
|
[dependencies.bridge-node-runtime]
|
|
version = "0.1.0"
|
|
path = "../../bin/node/runtime"
|