-
Notifications
You must be signed in to change notification settings - Fork 61
/
Cargo.toml
51 lines (45 loc) · 1.35 KB
/
Cargo.toml
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
[package]
name = "sputnikvm"
version = "0.10.1"
license = "Apache-2.0"
authors = ["Wei Tang <[email protected]>"]
description = "SputnikVM - a Portable Blockchain Virtual Machine"
repository = "https://github.com/ETCDEVTeam/sputnikvm"
keywords = ["no_std", "ethereum"]
[lib]
name = "sputnikvm"
[dependencies]
sha3 = "0.6"
sha2 = "0.6"
ripemd160 = "0.6"
digest = "0.6"
etcommon-block-core = { version = "0.3", default-features = false }
etcommon-rlp = { version = "0.2", default-features = false }
etcommon-bigint = { version = "0.2", default-features = false, features = ["rlp"] }
etcommon-block = { version = "0.5", default-features = false, optional = true }
secp256k1-plus = { version = "0.5", optional = true }
libsecp256k1 = { version = "0.1", optional = true }
log = "0.4"
[dev-dependencies]
etcommon-hexutil = "0.2"
[features]
default = ["std", "c-secp256k1"]
c-secp256k1 = ["secp256k1-plus", "etcommon-block/c-secp256k1"]
rust-secp256k1 = ["libsecp256k1", "etcommon-block/rust-secp256k1"]
std = ["etcommon-block-core/std", "etcommon-rlp/std", "etcommon-bigint/std", "etcommon-block"]
[workspace]
members = [
"./jsontests",
"./regtests",
"./gethrpc",
"./stateful",
"./cli",
"./precompiled/modexp",
"./precompiled/bn128",
"./network/foundation",
"./network/classic",
"./network/ellaism",
"./network/musicoin",
"./network/expanse",
"./network/ubiq",
]