Skip to content
Cargo.toml 1.85 KiB
Newer Older
name = "ethereum-poa-relay"
version = "0.1.0"
authors = ["Parity Technologies <[email protected]>"]
edition = "2018"
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
async-stream = "0.2.0"
clap = { version = "2.33.1", features = ["yaml"] }
codec = { package = "parity-scale-codec", version = "1.0.0" }
env_logger = "0.7.0"
ethabi = "12.0"
ethabi-contract = "11.0"
linked-hash-map = "0.5.3"
log = "0.4.8"
parity-crypto = { version = "0.6", features = ["publickey"] }
rustc-hex = "2.0.1"
serde = { version = "1.0", features = ["derive"] }
sp-bridge-eth-poa = { path = "../../primitives/ethereum-poa" }
[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.bridge-node-runtime]
version = "0.1.0"
path = "../../bin/node/runtime"