mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-07-15 06:45:44 +00:00
07a514e9f7
* get Substrate dependencies from crates.io * removing unused dependencies * cargo fmt --all * remove commented dependencies * remove commented dependencies again * try to fix compilation
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"
|