fuel-vm 0.11.1

FuelVM interpreter.
Documentation
[package]
name = "fuel-vm"
version = "0.11.1"
authors = ["Fuel Labs <contact@fuel.sh>"]
categories = ["concurrency", "cryptography::cryptocurrencies", "emulators"]
edition = "2021"
homepage = "https://fuel.network/"
keywords = ["blockchain", "cryptocurrencies", "fuel-vm", "vm"]
license = "BUSL-1.1"
repository = "https://github.com/FuelLabs/fuel-vm"
description = "FuelVM interpreter."

[dependencies]
dyn-clone = { version = "1.0", optional = true }
fuel-asm = "0.5"
fuel-crypto = "0.5"
fuel-merkle = "0.1"
fuel-storage = "0.1"
fuel-tx = "0.12"
fuel-types = "0.5"
itertools = "0.10"
secp256k1 = { version = "0.20", features = ["recovery"] }
serde = { version = "1.0", features = ["derive"], optional = true }
sha3 = "0.9"
thiserror = "1.0"
tracing = "0.1"
rand = { version = "0.8", optional = true }

[dev-dependencies]
fuel-tx = { version = "0.12", features = ["random"] }
fuel-vm = { path = ".", default-features = false, features = ["test-helpers"] }
serde_json = "1.0"

[features]
debug = []
profile-gas = ["profile-any"]
profile-coverage = ["profile-any"]
profile-any = ["dyn-clone"] # All profiling features should depend on this
random = ["fuel-types/random", "fuel-tx/random", "rand"]
serde = ["dep:serde", "fuel-asm/serde", "fuel-types/serde", "fuel-tx/serde"]
test-helpers = ["random"]

[[test]]
name = "test-backtrace"
path = "tests/backtrace.rs"
required-features = ["random"]

[[test]]
name = "test-blockchain"
path = "tests/blockchain.rs"
required-features = ["random"]

[[test]]
name = "test-contract"
path = "tests/contract.rs"
required-features = ["random"]

[[test]]
name = "test-profile-gas"
path = "tests/profile_gas.rs"
required-features = ["random", "profile-gas"]

[[test]]
name = "test-code-coverage"
path = "tests/code_coverage.rs"
required-features = ["random", "profile-coverage"]

[[test]]
name = "test-serde-profile"
path = "tests/serde_profile.rs"
required-features = ["random", "profile-coverage", "profile-gas", "serde"]

[[test]]
name = "test-encoding"
path = "tests/encoding.rs"
required-features = ["random"]

[[test]]
name = "test-flow"
path = "tests/flow.rs"
required-features = ["random"]

[[test]]
name = "test-metadata"
path = "tests/metadata.rs"
required-features = ["random"]

[[test]]
name = "test-predicate"
path = "tests/predicate.rs"
required-features = ["random"]