mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-07-10 02:57:27 +00:00
8b8248f83f
* Split the Rialto Node into a standalone crate * Split the Millau Node into a standalone crate * Remove `bridge-node` crate * Add benchmarking feature to nodes * Check that benchmarks compile in CI * Remove nodes from CI matrix * Update Rialto node to Substrate 2.0 * Get Millau node compiling with Substrate 2.0 * Remove extra license text * Remove comments in TOML files * Move nodes and runtimes into Rialto and Millau folders * Fix dependency paths * Remove unused script * Add issue to benchmarking TODO * Fix benchmark manifest paths
29 lines
689 B
TOML
29 lines
689 B
TOML
[package]
|
|
name = "ethereum-contract-builtin"
|
|
description = "Small crate that helps Solidity contract to verify finality proof."
|
|
version = "0.1.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2018"
|
|
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
|
|
|
|
[dependencies]
|
|
codec = { package = "parity-scale-codec", version = "1.3.4" }
|
|
ethereum-types = "0.9.2"
|
|
finality-grandpa = "0.12.3"
|
|
hex = "0.4"
|
|
log = "0.4.11"
|
|
|
|
# Runtime/chain specific dependencies
|
|
|
|
rialto-runtime = { path = "../../../bin/rialto/runtime" }
|
|
|
|
# Substrate Dependencies
|
|
|
|
sc-finality-grandpa = "0.8"
|
|
sp-blockchain = "2.0"
|
|
sp-finality-grandpa = "2.0"
|
|
sp-runtime = "2.0"
|
|
|
|
[dev-dependencies]
|
|
sp-core = "2.0"
|