near-vm-logic 0.4.3

This crate implements the specification of the interface that Near blockchain exposes to the smart contracts.
Documentation
[package]
name = "near-vm-logic"
version = "0.4.3"
authors = ["Near Inc <hello@nearprotocol.com>"]
edition = "2018"
license = "Apache-2.0"
readme = "README.md"
categories = ["wasm"]
repository = "https://github.com/nearprotocol/nearcore"
homepage = "https://github.com/nearprotocol/nearcore"
description = """
This crate implements the specification of the interface that Near blockchain exposes to the smart contracts.
"""

[dependencies]
byteorder = "1.2"
bs58 = "0.3"
serde = { version = "1.0", features = ["derive"] }
near-runtime-fees = { path = "../near-runtime-fees", version = "0.4.3" }
near-vm-errors = { path = "../near-vm-errors", version = "0.4.3" }

[dev-dependencies]
serde_json = {version= "1.0", features= ["preserve_order"]}

[features]
default = ["costs_counting"]

# Use this feature to enable counting of fees and costs applied.
costs_counting = []

[[test]]
name = "test_storage_read_write"
path = "tests/test_storage_read_write.rs"

[[test]]
name = "test_context"
path = "tests/test_context.rs"

[[test]]
name = "test_miscs"
path = "tests/test_miscs.rs"
required-features = ["costs_counting"]

[[test]]
name = "test_registers"
path = "tests/test_registers.rs"

[[test]]
name = "test_storage_usage"
path = "tests/test_storage_usage.rs"

[[test]]
name = "test_promises"
path = "tests/test_promises.rs"

[[test]]
name = "test_iterators"
path = "tests/test_iterators.rs"

[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
sha2 = "0.8"