evm-runtime 0.27.0

SputnikVM - a Portable Blockchain Virtual Machine
Documentation
[package]
name = "evm-runtime"
version = "0.27.0"
license = "Apache-2.0"
authors = ["Wei Tang <hi@that.world>", "Parity Technologies <admin@parity.io>"]
description = "SputnikVM - a Portable Blockchain Virtual Machine"
repository = "https://github.com/sorpaas/rust-evm"
keywords = ["no_std", "ethereum"]
edition = "2018"

[dependencies]
evm-core = { version = "0.27", path = "../core", default-features = false }
primitive-types = { version = "0.9", default-features = false }
sha3 = { version = "0.8", default-features = false }
environmental = { version = "1.1.2", default-features = false, optional = true}

[features]
default = ["std"]
std = ["evm-core/std", "primitive-types/std", "sha3/std", "environmental/std"]
tracing = [
  "environmental"
]