fuel-types 0.5.3

Atomic types of the FuelVM.
Documentation
[package]
name = "fuel-types"
version = "0.5.3"
authors = ["Fuel Labs <contact@fuel.sh>"]
categories = ["cryptography::cryptocurrencies", "data-structures", "parsing"]
edition = "2021"
homepage = "https://fuel.network/"
keywords = ["blockchain", "cryptocurrencies", "fuel-vm", "vm"]
license = "Apache-2.0"
repository = "https://github.com/FuelLabs/fuel-types"
description = "Atomic types of the FuelVM."

[dependencies]
rand = { version = "0.8", default-features = false, optional = true }
serde = { version = "1.0", default-features = false, features = ["derive", "alloc"], optional = true }

[dev-dependencies]
bincode = "1.3"
fuel-types = { path = ".", features = ["random"] }
hex = "0.4"
rand = { version = "0.8", default-features = false, features = ["std_rng"] }
serde_json = "1.0"

[features]
default = ["std", "serde?/default"]
alloc = []
random = ["rand"]
serde = ["dep:serde", "alloc"]
std = ["alloc", "serde?/std"]