-
Notifications
You must be signed in to change notification settings - Fork 61
Expand file tree
/
Copy pathCargo.toml
More file actions
28 lines (25 loc) · 868 Bytes
/
Cargo.toml
File metadata and controls
28 lines (25 loc) · 868 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
[package]
name = "regtests"
version = "0.0.0"
license = "Apache-2.0"
authors = ["Stewart Mackenzie <setori88@gmail.com>", "Wei Tang <hi@that.world>"]
description = "regtests - performs a regression test of the entire ethereum classic blockchain."
# Since we have an explicit [[bin]] section below, we add the
# following autobins line allow prevent Cargo to automatically infer
# binary targets. Should get moved be turned into a [[test]] instead?
#
# In the Rust 2018 edition this will be necessary. See
# https://github.com/rust-lang/cargo/issues/5330
autobins = false
[[bin]]
name = "regtests"
path = "src/bin/main.rs"
[dependencies]
sputnikvm = { path = '..' }
sputnikvm-network-classic = { path = "../network/classic" }
gethrpc = { path = '../gethrpc' }
etcommon-block = "0.5"
etcommon-bigint = "0.2"
etcommon-hexutil = "0.2"
clap = "2.22"
serde_json = "1.0"