near-vm-errors 0.13.0

Error that can occur inside Near Runtime encapsulated in a separate crate. Might merge it later.
Documentation
[package]
name = "near-vm-errors"
version = "0.13.0"
authors = ["Near Inc <hello@nearprotocol.com>"]
publish = true
# Please update rust-toolchain.toml as well when changing version here:
rust-version = "1.60.0"
edition = "2021"
license = "MIT OR Apache-2.0"
readme = "README.md"
categories = ["wasm"]
repository = "https://github.com/near/nearcore"
description = """
Error that can occur inside Near Runtime encapsulated in a separate crate. Might merge it later.
"""

[dependencies]
serde = { version = "1", features = ["derive"] }

borsh = "0.9"
deepsize = { version = "0.2.0", optional = true }
near-account-id = { path = "../../core/account-id", version = "0.13.0" }
near-rpc-error-macro = { path = "../../tools/rpctypegen/macro", version = "0.13.0" }

[features]
dump_errors_schema = ["near-rpc-error-macro/dump_errors_schema"]
protocol_feature_alt_bn128 = []
deepsize_feature = [
  "deepsize",
  "near-account-id/deepsize_feature",
]