mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-30 23:21:02 +00:00
65 lines
2.1 KiB
TOML
65 lines
2.1 KiB
TOML
[package]
|
|
name = "ethereum-poa-relay"
|
|
version = "0.1.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
ansi_term = "0.12"
|
|
async-std = "1.0.1"
|
|
async-stream = "0.2.0"
|
|
clap = { version = "2.33.0", features = ["yaml"] }
|
|
codec = { package = "parity-scale-codec", version = "1.0.0" }
|
|
env_logger = "0.7.0"
|
|
futures = "0.3.1"
|
|
jsonrpsee = { git = "https://github.com/paritytech/jsonrpsee.git", default-features = false, features = ["http"] }
|
|
linked-hash-map = "0.5.2"
|
|
log = "0.4.8"
|
|
parking_lot = "0.10.0"
|
|
rustc-hex = "2.0.1"
|
|
serde = { version = "1.0.106", features = ["derive"] }
|
|
serde_json = "1.0.51"
|
|
sp-bridge-eth-poa = { path = "../../primitives/ethereum-poa" }
|
|
time = "0.2"
|
|
web3 = { git = "https://github.com/svyatonik/rust-web3.git", branch = "fix_receipt" }
|
|
|
|
# Substrate Based Dependencies
|
|
[dependencies.frame-system]
|
|
version = "2.0.0-alpha.2"
|
|
rev = "2afecf81ee19b8a6edb364b419190ea47c4a4a31"
|
|
git = "https://github.com/paritytech/substrate/"
|
|
|
|
[dependencies.pallet-transaction-payment]
|
|
version = "2.0.0-alpha.2"
|
|
rev = "2afecf81ee19b8a6edb364b419190ea47c4a4a31"
|
|
git = "https://github.com/paritytech/substrate.git"
|
|
|
|
# I think this is used for sr-io and stuff
|
|
[dependencies.node-primitives]
|
|
version = "2.0.0-alpha.2"
|
|
rev = "2afecf81ee19b8a6edb364b419190ea47c4a4a31"
|
|
git = "https://github.com/paritytech/substrate.git"
|
|
|
|
# Branch used for keccack256 hasher code
|
|
# Could probably move the keccack hasher stuff to our own primitives
|
|
[dependencies.sp-core]
|
|
version = "2.0.0-alpha.2"
|
|
rev = "2afecf81ee19b8a6edb364b419190ea47c4a4a31"
|
|
git = "https://github.com/paritytech/substrate.git"
|
|
|
|
[dependencies.sp-keyring]
|
|
version = "2.0.0-alpha.2"
|
|
rev = "2afecf81ee19b8a6edb364b419190ea47c4a4a31"
|
|
git = "https://github.com/paritytech/substrate.git"
|
|
|
|
[dependencies.sp-runtime]
|
|
version = "2.0.0-alpha.2"
|
|
rev = "2afecf81ee19b8a6edb364b419190ea47c4a4a31"
|
|
git = "https://github.com/paritytech/substrate.git"
|
|
|
|
# This should get moved to our `bin` folder
|
|
[dependencies.bridge-node-runtime]
|
|
version = "0.1.0"
|
|
path = "../../bin/node/runtime"
|
|
# node-runtime = { git = "https://github.com/svyatonik/substrate.git", branch = "bridge_runtime" }
|