multiversx-chain-vm 0.13.1

MultiversX VM implementation and tooling
Documentation
[package]
name = "multiversx-chain-vm"
version = "0.13.1"
edition = "2021"

authors = [
    "Andrei Marinica <andrei.marinica@multiversx.com>",
    "MultiversX <contact@multiversx.com>",
]
license = "GPL-3.0-only"
readme = "README.md"
repository = "https://github.com/multiversx/mx-sdk-rs"
homepage = "https://multiversx.com/"
documentation = "https://docs.multiversx.com/"
description = "MultiversX VM implementation and tooling"
keywords = ["multiversx", "blockchain", "vm", "tools"]
categories = ["cryptography::cryptocurrencies", "development-tools::debugging"]

[features]
# not supported when compiling to wasm
wasm-incompatible = ["rand"]

[dependencies]
num-bigint = "0.4"
num-traits = "0.2"
hex = "0.4"
sha2 = "0.10.6"
sha3 = "0.10.6"
itertools = "0.14.0"
hex-literal = "=0.4.1"
bitflags = "=2.8.0"
colored = "2.2"                               # TODO: doesn't support >v2.2 (can't build on nightly)
rand = { version = "0.8.5", optional = true }
rand_seeder = "0.3.0"
ed25519-dalek = "2.1.0"

[dependencies.multiversx-chain-core]
version = "=0.13.1"
path = "../core"

[dependencies.multiversx-chain-vm-executor]
version = "0.3.0"